Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/04/2008, 14:37
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
Re: necesito su ayuda

Hola rogeliolt,

Para solucionar eso, haz esto al inicio de tu script:
Código PHP:
error_reportingE_ALL E_NOTICE ); 
Para arreglar el problema de raíz, tienes que comprobar si existe el indice en el arreglo:
Código PHP:
$lluv = ( isset( $_POST['lluv'] ) ? $_POST['lluv'] : '' ); 
Saludos.