Ver Mensaje Individual
  #16 (permalink)  
Antiguo 14/04/2011, 09:50
Saneko
 
Fecha de Ingreso: marzo-2011
Mensajes: 107
Antigüedad: 13 años, 1 mes
Puntos: 22
Respuesta: me tiene loco el checkbox,

Código HTML:
<form name="prueba method="post" action="">
<input type="checkbox" name="tester">Probando
<input type="submit" value="Probar">
</form> 
Código PHP:
if($_POST)
{
   
$test $_POST['tester'];

   if(
$test == TRUE)
   {
      
$sw 1;
   }
   else
   {
      
$sw 0;
   }

   echo 
$sw;

en algun lado aparecerá un 0 o un 1