Need for php include help
hi! Sorry if this is in the wrong section. I wasn't too sure where to post this. Can someone please help me with the php include script? Does it look like this?:<?php
include("header.php")
stuff inbetween
include(footer.php")
?>
or does it look like this?
<html>
<body>
<?php
include("header.php")
stuff inbetween
include(footer.php")
?>
</body>
</html>
Also what would you place in the header.php ? would you finish it off so like you have all your content and then </body></html> or don't you end the tags? Please help me
