lunes, 21 de diciembre de 2009

CheckBox Dinámicos


Código PHP:


<form action="apuntarse_eventos.php" method="post">
<?
$i 
0;
while (
$i 10){
?>
Evento <? echo $i?>: <input type="checkbox" name="eleccion[]" id="eleccion<? echo $i?>" value="<? echo $i?>" /><br />
<? $i++; } ?>
<input type="submit" name="boton" value="Confirmar" />
</form>




apuntarse_eventos.php:

Código PHP:


<?
if(isset($_POST['eleccion'])){
    for(
$i 0$i count($_POST['eleccion']); $i++){
        
$sql "INSERT INTO tbl_quiera_asistir_a (id_evento) VALUES ("$_POST['eleccion'][$i] .")";
        echo 
$sql "<br />";//completar el codigo grabar en la bd Mysql
    }
}
?>


No hay comentarios:

Publicar un comentario