hi, I'm having some problems. when i put this in my web page i can call diferent pages through one template index.php. Like index.php?id=456
But, now i have changed my server. Thay say that they support php4, but i cant use this code any more. It just doesent work.
Is there any other code that i can use
<?
$ext = ".htm";
?>
<?
if(file_exists("$drug$ext")) {
include ("$drug$ext");
}
else {
include("home$ext");
}
?>