All, I am aware of includes and how they work. My question today is, if I am creating a webpage, say index.php and I want to include files like header.php, left_col.php, centre_col.php and right_col.php (for a three column layout) and ofcourse, footer.php, do all these files have to be nested within a table?
Is it necessary that index.php which houses these files be created as :
<table>
<tr>
<td>
include header and the rest of the SSI include files
</td>
</tr>
</table>
The include files have tables within them.
I am in a dilemma as to whether to house them within a table on index.php or just have them as
Include – header
Include – other files
Include – footer
All valuable suggestions and opinions along with pitfalls of either approach are welcome and highly appreciated. Thanks - Melwyn