Ver Mensaje Individual
  #8 (permalink)  
Antiguo 12/07/2009, 13:38
Samou
 
Fecha de Ingreso: junio-2009
Mensajes: 115
Antigüedad: 14 años, 10 meses
Puntos: 0
Respuesta: recuperar lista de datos de un formulario

Hola GatorV, ya tengo el campo hidden en el formulario:

<form name="primero" method="POST" action="imprime.php">
<?php for ($w=0;$w<count($dominios);$w++){
$este=$dominios[$w];
echo $este;?>

<tr>
<td><h6>Dominio: <?php echo $este;?></h6></td>
<td><h6>Num_Resultados: <?php echo $contadores[$este];?></h6></td>
<td><h6>Seleccionar: <input type="checkbox" name="seleccion[]" value=<?php echo $este; ?> ></h6> </td>
<td><h6>Coste: <?php echo "X"; ?></h6></td>
</tr>

<?php } ?>

</table>
</BLOCKQUOTE>
<input name="array" type="hidden" value="$datos">
<Input type="Submit" Name="Submit1" Value="Select a Radio Button">
</form>

Gracias de nuevo