Hi
I've found that my switch statement used for navigation isn't working.
http://mysite.com/test.php?go=news
should show the news but its just showing http://mysite.com/test.php. i've checked my php code and its fine:
<?
switch($go)
{
default:
echo "default";
break;
case news:
echo "news";
break;
case contact:
echo "contact";
break;
}
?>
I'm baffled!
Ant