mvosoughi Posted March 7, 2006 Share Posted March 7, 2006 Hi, is there any difference between calling pages contents between PHP on Apcahe versus PHP on IIS? My problem is under PHP/Apache I used include command to call in pages contents (index.php?page=2) but under PHP/Windows platform, it cannot pass the page contents or page title and it only calls the page=0 contents.As I said, my codes works under PHP/Apache and I have no problem calling in the contents of each page using switch statement ...Any ideas how to solve this problem?Here is a sample of my codes:----------------index.php ---<?include "contents.php";?><?include "pages/$content";?>-----------------contents.php---<?switch ($page) {case 0:$content = "main.php";$title = "Main"; break;case 1:$content = "page2.php";$title = "Page two"; break;?>MOD EDIT : Topic double-posted. Closing Link to comment Share on other sites More sharing options...
Recommended Posts