alright, here's my problem.
i used this thread to dev my php site, and so far it's working, i wrote a news script, and that all works fine. until i noticed one problem.
PHP Code:
<?php
if ($page != "")
{
include ("$page.html");
}
else
{
include("news/news.php");
}
?>
if you know anything about php, you know what that does. my problem is, when i go to index.php?page=stuff, it's still giving me news/news.php, no change. at all.
so to troubleshoot this problem, i installed apache2triad. the code works. i tryed reinstalling the localhost using this thread. no change, the problem is still there.
can someone help?