Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/09/2005, 16:56
Avatar de davidangel
davidangel
 
Fecha de Ingreso: abril-2005
Mensajes: 124
Antigüedad: 19 años
Puntos: 0
en realidad no entendi lo q quieres pero si es esto bueno ;

<?
//ini_set('display_errors','1');
//este es tu arreglo con todas las variables q envias
echo "<pre>";
print_r($_POST);
echo "</pre>";
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="form1" method="post">
<table width="75%" border="1">
<?php

$i=0;
for($idproc = 1;$idproc<30;$idproc++)
{
echo '<tr>';
echo '<td>'.$idproc.'</td>';
echo '<td><input type="text" name="Fini'.$idproc.'"></td>';
echo '<td><input type="text" name="Ffin'.$idproc.'"></td>';
for($idbd=0;$idbd<3;$idbd++)
{
echo '<td><input name="'.$i++.'" type="checkbox" value="'.$idproc.'-'.$idbd.'"></td>';
}
echo '</tr>';
}

?>
</table>
<p></p>
<p><input type="submit" name="Submit" value="Submit">
</p></form>
</body>
</html>

si no es eso bueno explicate mejor porq no entendi muy bien