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;
?>