Can someone plaese help me with this I do not know what it all means .I am trying to make a includes file for my site .also i do not know where to find this info on my site and how to set it up.I am still a rookie at all this. Thank you www.askyourcook.com <html> (meta tags and links to stylesheet go here) <body> (include link for header goes here) Actual content for the page goes here (include link for the nav menu goes here) (include link for the footer goes here) </body> </html>
3 Steps: 1) Rename all your .html files to .php 2) Put the code for header, footer etc... in separate files with .php extension also. 3) In the main files where you want to use the header, footer put this: <?php include("header.php"); ?> <?php include("footer.php"); ?>