bueno el formulario es asi
Cita: <form name="form1" method="post" action="recibe.php">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="5%"><input type="checkbox" name="checkbox" value="opcion1"></td>
<td width="95%">opcion 1</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox2" value="opcion2"></td>
<td>opcion 2</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox3" value="opcion3"></td>
<td>opcion 3</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox4" value="opcion4"></td>
<td>opcion 4</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox5" value="opcion5"></td>
<td>opcion 5</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox6" value="opcion6"></td>
<td>opcion 6</td>
</tr>
</table>
</form>
y tengo una pagina que se llama recibe.php que es asi
Cita: <?php
$opcion1= $_POST["opcion1"];
$opcion2= $_POST["opcion2"];
$opcion3= $_POST["opcion3"];
$opcion4= $_POST["opcion4"];
$opcion5= $_POST["opcion5"];
$opcion6= $_POST["opcion6"];
// aca va el resto del codigo
?>
suponiendo que marco todas las opciones menos la 1 el error que me tira es este
Notice: Undefined index: opcion1 in C:\Archivos de programa\Apache Software Foundation\Apache2.2\htdocs\prueba\recibe.php on line 2