PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
If you work with different files like header.php footer.php leftcolumn.php...
and you use echo for the html tags in every file do you always start from the begin with the echo "<html tag>"; or do you work liek this on the next files echo " <where the previous tag ends>
If you talking about including different file in one main file, well no you don't start html each time. because inlcuing means adding the "exact" code you put in your page (to BE included)and the code is put "exactly" where you include it on the mainpage
(using the include ("something.php");)