Index.php Code Part 9
After you are done entering your content, we do need to continue to finish up the web page.
| <br><br> |
The next line after you have entered all of your content is "<br><br>". This line just places a couple of blank lines at the end of the content to give some spacing to the bottom of the web page.
| </td> |
The "</td>" ends the content of the cell and allows the computer to continue to finish up the rest of the webpage.
| <td><!--- Blank Column ---> </td> |
The "<td><!--- Blank Column ---> </td>" adds another blank spacing column.
| <td valign="top"><!--- Right Side (Ad Space width = 160) ---><?php include ("includes/sideright.inc.php"); ?></td> |
The next line adds the right side of the web page. The "<td valign="top">" starts the cell and aligns all of the content to the top. The "<!--- Right Side (Ad Space width = 160) --->" note reminds that this is where the right side is going and that if you are placing an ad bar here to keep it under 160 pixels wide. The "<?php include ("includes/sideright.inc.php"); ?></td>" adds the right bar to the web page and ends the cell.
| </tr> |
And finally, the "</tr>" ends this important row.
| <tr> |
The next line "<tr>" starts up the next row in the website.
| <td><!--- Lower Left Corner (160x160) ---><?php include ("includes/lowerleft.inc.php"); ?></td> |
The next line ads the lower left corner to the website. It starts with the "<td>" to start the cell. It has the note "<!--- Lower Left Corner (160x160) --->" to indicate that this is the lower left corner and remind us to keep any images and information under 160 pixels wide. The "<?php include ("includes/lowerleft.inc.php"); ?>" adds the "lowerleft.inc.php" file to the web page. And the "</td>" ends the cell.
| <td><!--- Blank Column ---> </td> |
The "<td><!--- Blank Column ---> </td>" that comes next is just another blank column for formatting.
| <td><!--- End Content ---><?php include ("includes/endcontent.inc.php"); ?></td> |
The "<td><!--- End Content ---><?php include ("includes/endcontent.inc.php"); ?></td>" creates a cell and puts the "endcontent.inc.php" file into the webpage at this location before it ends the cell.
| <td><!--- Blank Column ---> </td> |
The "<td><!--- Blank Column ---> </td>" in the next line is just one more blank column.

