|
This should work..
if($QUERY_STRING =(remove this space)= 10001)
{
include($DOCUMENT_ROOT/includes/index1.php);
}else if($QUERY_STRING =(remove this space)= 10002)
{
include($DOCUMENT_ROOT/includes/index2.php);
}else{
include($DOCUMENT_ROOT/includes/index3.php);
}
Add this to the inside the body tag of index.html
Then make sure that /includes/index1.php index2.php & index3.php exist.. These 3 files should only have the body content and not any html/head/body tags what so ever..
|