i have many versions of the same html page, each with different content but basically the same layout. it's really tedious if i need to make 10 more pages and change the content for everyone. someone mentioned that i should use a php script to generate my html files from now on. to include files that contain elements of the html page and just put in a lot of include statements. im not really sure how to approach this, id really appreciate it if someone could point me in the right direction. thanks!
PHP supports the include statement. The following will "include" the code from the file "menu.php" in the currently rendered file at the place where the include function was placed.
Bookmarks