This tells us nothing of the coding the include just brings the code in that page into the page you are on.
For example say you have index.php and menu.php.
index.php
PHP Code:
<div id="simple">
This is an example.
<div id="content">
<div id="menu">
<?php include("menu.php")?>
</div>
Page stuff
</div>
</div>
menu.php
PHP Code:
<ul>
<li>Home</li>
<li>Photos</li>
<li>Links</li>
</ul>
That is as the code would be on your server but when the page gets loaded it becomes
Code:
<div id="simple">
This is an example.
<div id="content">
<div id="menu">
<ul>
<li>Home</li>
<li>Photos</li>
<li>Links</li>
</ul>
</div>
Page stuff
</div>
</div>
The ul then gets the css properties of the 3 divs above and the attributes set for ul and lis.
Bookmarks