Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/07/2012, 15:42
Avatar de poncharelo_69
poncharelo_69
 
Fecha de Ingreso: octubre-2011
Ubicación: Queretaro
Mensajes: 86
Antigüedad: 12 años, 7 meses
Puntos: 10
Respuesta: problema recuperar variable get post

Puedes intentar sin utilizar la funcion empty, es decir:

Código PHP:
if (!$_POST['nom']) 
o en su defecto

Código PHP:
if($_POST['nom'] != ""
Pruebalas y ve cual te funciona!