Hi,
What's the best way to build a website right now? I remember a decade ago people are just using static pages, then people started using frames, and now templates. I THINK now people are using PHP includes to classify and separate all the different contents into separate classes or files. Is that the best way to go?
For example, here's some pseudocode:
Header.inc.php would be something like:
<table>
<tr>
<td>
and Fotter.inc.php would be something like:
</td>
</tr>
</table>
Then for every page that you make you would just have something like.
<?php include(header.inc.php)?>
Contents..
Contents...
Contents....
<?php include(footer.inc.php)?>
//sorry i'm still new to PHP so some of the commands may not seem right.