Well I've been running a script on windows and it was perfect. But now, I've moved to Linux (Suse) and I'm having this problem:
Whenever I click a link like: http://127.0.0.1/index.php?act=search, the link changes but the page doesn't.
In index.php, it is:
if (isset($act) && $act=="search")
{
include("sub/search.php");
exit();
}
Anybody has any idea why is this happening?
EDIT:
I forgot to put $act = $_GET["act"];. It's working now.