Table Layouts using PHP
Posted: Fri Nov 22, 2002 8:58 pm
I know php can make that easier... Something about editing one page and all the webpages using that table will change to what I want. Does anyone know how to do this?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<table>
<tr>
<td>Item 1</td>
<td>Item 2</td>
<td>Item 3</td>
. . .
</tr>
</table>Code: Select all
<?php
//some content, some code
//now lets include that menu
include("menu.html"); //be sure to provide a correct relative path or absolute path to the file
//some more content, some more code
?>