View Single Post
Old 13-05-2008, 10:55   #19 (permalink)
Shiro
shiro
 
Shiro's Avatar
 
Join Date: Aug 2007
Location: Yokohama, Japan
Posts: 3,126
When you include a page, the code in the included page is included directly into the place you enter it.

For example, if you have a file that looks like this:

A
B
include c.html
D
E

And c.html looks like this:

1
2
3

Then the whole top file, with the include in it, will read like this:

A
B
1
2
3
D
E

So right now you have

Code:
<div id="leftcolumn"> <head> <title>Untitled Document</title> // bunch of stuff </body> </html> </div> //this is the end of the 'left column' div

The included file should not be a complete file. It should just be a snippet that fits right into the file its being included into.
__________________
This space for rent.

Dads Japan
After Hours Japan
  Reply With Quote