I have a wamp server in green. PHP code found but $HTTP_GET_VARS and $_GET no found.
The page have this URL:
http://localhost/workfis/login.php?errorUsuario=vacio
The page have this code:
$variable1=$_GET['errorUsuario']=="vacio";
echo $variable1;
$variable2=$HTTP_GET_VARS['errorUsuario']=="vacio";
echo $variable2;
variable1 and variable2 dont print.