Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/03/2009, 09:17
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Como chequeo este $_REQUEST ?

Es mejor si usas isset() o empty():
Código php:
Ver original
  1. if(isset( $_REQUEST['tu_var'] && !empty($_REQUEST['tu_var'])) {
  2.         $start = $_REQUEST['tu_var']:
  3. }

Saludos.