Ver Mensaje Individual
  #9 (permalink)  
Antiguo 29/09/2008, 08:56
Avatar de Carlojas
Carlojas
 
Fecha de Ingreso: junio-2007
Ubicación: Shikasta
Mensajes: 1.272
Antigüedad: 16 años, 11 meses
Puntos: 49
Respuesta: $_post ,encuesta y imagen con onclick con php

Que tal NSNCxxxx, las variables que viajan via URL debes de rescatarlas por GET
Código PHP:
$do $_GET['do'];
$t $_GET['t'];
if(
$do=="verif"
   { 
    if(
strlen($t)==0
      { 
       
$mje="Campo de Respuesta VACIO.Ingrese Respuesta";  
       
$_SESSION['cant_control']-=1
      } 
      else 
         if(
strlen($t)>50
         { 
            
$_SESSION['mje']="Excedio la cantidad máxima de carácter para Respuestas";  
             
$_SESSION['cant_control']-=1
         }  
         else 
         { 
          
$resp[$cant_control]=$t
          
$_SESSION['mje']=""
         } 
   
     
header("location:encuestas.php?do=verif"); 
  } 

Saludos.