Mi codigo:
Código PHP:
Ver original
<form action="#" method="post" > <input type="checkbox" name="check_list[]" value="C/C++"><label>C/C++</label><br/> <input type="checkbox" name="check_list[]" value="Java"><label>Java</label><br/> <input type="checkbox" name="check_list[]" value="PHP"><label>PHP</label><br/> <input type="hidden" value="1" name="filtro"> <input type="submit" name="submit" value="Submit"/> </form> <?php $opciones=$_POST['check_list']; $i=0; while($i<$n){ echo $opciones[$i]; $i++; } } ?>