Hi,
Ive switched from IIS w/php to Apache 2. The installation when smoothly but when I try to access variables they dont seem to be registering properly.
For Example I go to the following url
http://localhost/test.php?act=hello
It keeps returning "Variable problem" and wont set act to hello or the string hi
test.php ::
<?
if ($act == "hello"){
echo "hello";
}
else if($act == "hi"){
echo "hi";}
else{
echo "Variable Problem";
}
?>
Any ideas ?