Ver Mensaje Individual
  #8 (permalink)  
Antiguo 22/05/2012, 03:01
Avatar de bet7o
bet7o
 
Fecha de Ingreso: febrero-2010
Ubicación: DF
Mensajes: 315
Antigüedad: 14 años, 3 meses
Puntos: 20
Respuesta: Checkbox a BD

Esta raro pero bueno verifica bien tu código php, acá te dejo un ejemplo funcionando.

Código PHTML:
Ver original
  1. <html>
  2.   <head>
  3.   </head>
  4.   <body>
  5.     <?php if(isset($_POST['rows'])): ?>
  6.     <?php for($i = 1; $i <= 10; $i++): ?>
  7.     <ul>
  8.       <?php if(in_array($i, $_POST['rows'])): ?>
  9.       <li>
  10.         El check <strong><?php echo $i ?></strong> fue seleccionado!
  11.       </li>
  12.       <?php endif ?>
  13.     </ul>
  14.     <?php endfor ?>
  15.     <?php else: ?>
  16.     <form method="POST">
  17.       <?php for($i = 1; $i <= 10; $i++): ?>
  18.       <label>
  19.         <input type="checkbox" name="rows[]" value='<?php echo $i ?>'>
  20.       <?php echo $i ?>
  21.       </label><br />
  22.       <?php endfor ?>
  23.       <button type="submit">Enviar</button>
  24.     </form>
  25.     <?php endif ?>
  26.   </body>
  27. </html>

Saludos!
__________________
Pero el no contaba con una cosa, mi peligroso desinteres por la vida humana