Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/03/2006, 18:52
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 5 meses
Puntos: 11
deja asi el codigo:

Código PHP:
<table border="1" cellspacing="0" cellpadding="2" align="center">
<form method="post" name="buscador" action="pagina2.php">
<tr>
<td><input type="image" name="Submit" value="Submit" src="img/btn/refresh.gif" width="80" height="25"></td>

<?php foreach($namefieldArray as $value) { ?>
<td>
<input name="valores[]" type="text" value="" maxlength="40" width="">
</td>
<?php ?>
</tr>
</form>
</table>
en otro script accedes a los input asi:

Código PHP:
<?php
    
foreach($_POST['valores'] as $valor)
        echo 
$valor;
?>