Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/02/2011, 09:04
Avatar de historiasdemaria
historiasdemaria
 
Fecha de Ingreso: septiembre-2010
Ubicación: www
Mensajes: 433
Antigüedad: 14 años, 1 mes
Puntos: 54
De acuerdo Respuesta: no consigo mantener valores checkbox en un formulario

Código PHP:
Ver original
  1. <?php
  2. function isChecked($value)
  3. {
  4.         if (isset($_POST['coche']))
  5.         {
  6.             if (in_array($value, $_POST['coche']))
  7.             {
  8.                 return " CHECKED";
  9.             }
  10.         }
  11.    
  12.         return "";
  13. }
  14.  
  15. ?>
  16. <form method="post" id="form" name="form" action="form.php">
  17. <input type="checkbox" name="coche[]" value="ford" <?php echo isChecked('ford'); ?>> ford<br />
  18. <input type="checkbox" name="coche[]" value="opel" <?php echo isChecked('opel'); ?>>opel<br />
  19. <input type="checkbox" name="coche[]" value="peugeot" <?php echo isChecked('peugeot'); ?>> peugeot<br />
  20.  
  21. <input type="submit" value="enviar" />
  22. </form>

Ahi va, enterito ;)