Markus JäNtti wrote:
<?
if($_GET[test] == "test") { echo "A"; }
else { echo "B"; }
?>
You forgot the double quotes ... Should be:

if($_GET["test"] ...

Jc



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to