in effetti sono stato poco chiaro... allego codice php (almeno una parte) che non funziona


<form method="post" action="aaa.php">
<?php

echo "<table>\n<tr>";
for ($i=0; $i < $numfields; $i++)
{
// echo '<th>'.mysql_field_name($result, $i).'</th>';
}
echo "</tr>\n";
while ($row = mysql_fetch_row($result))
{
echo '<tr><td>'.implode($row,'</td><td>')."</td></tr>\n";
}
echo "</table>\n";
//$row = mysql_fetch_row($result);
//echo $row[0];
?>
<input type="text" name="home[1]"SIZE=1 MAXLENGTH=1>
<input type="text" name="away[1]"SIZE=1 MAXLENGTH=1>


<input type="text" name="home[2]"SIZE=1 MAXLENGTH=1>
<input type="text" name="away[2]"SIZE=1 MAXLENGTH=1></p>


<input type="submit" value="POST"SIZE=1 MAXLENGTH=1></p>
</form>

mi chiedo come possa mettere gli input allo stesso livello delle singole righe estratte con
mysql_fetch_row e visulaizzate con implode in modo da passare i dati in post con input type submit