I need help for the following: (In possible bad written english)
when I go to a link on my website like this:
http://www.mysite.com/index.php?page1
I want the page to do something like this:
{include ("header.html");}
{include ("page1.html");}
{include ("footer.html");}
and then hit a link like this:
http://www.mysite.com/index.php?page2
I want the page to do something like this:
{include ("header.html");}
{include ("page2.html");}
{include ("footer.html");}
I want all of my pages to be put together from INDEX.PHP if it is possible.... so all i need to do is fill in more pages like PAGE1.HTML when needed... (the PAGE1,2,3,4...html files is containing the text and images that will appear on the page.... header.html contains above <body> and footer contains anything after </body>....)
How does I make this work.... If anyone see what I want...
HELP?