Hallo,
here is my problem....
I have a site who has, 150 pages (html) wich are often changing (the content).OK I made a header.php,a footer.php,and an index.php files. Now how should I proceed to get the hml. without using a Mysql? or should a include the header and the footer in each html....?
is there a solution about this? thanks
here is my index.php:
<?php
switch ($id)
{
case 1: include ("bgb_358_alt_0.htm"); break;
case 2: include ("plitt_nuen.htm"); break;
case 3: include ("plitt_bamb.htm"); break;
case 4: include ("plitt_erlan.htm"); break;
case 5: include ("plitt_nuen.htm"); break;
case 6: include ("oeff-Recht/oe-schachtie-zitate-hitliste.html"); break;
case 7: include ("oeff-Recht/Verfassungsrecht/Staatsgrundlagen/oe-kant-text.html"); break;
case 8: include ("oeff-Recht/Verfassungsrecht/Staatsgrundlagen/oe-vertrauensschutz-text.html"); break;
default: include("main1.php"); break;
}
?>
<?php include("footer.php"); ?>
please help!