In php if you have multiple fields with the same name they come through comma seperated however here is how I would do it.
Let's say we've got a db like this
tblOne contains fields ID and Notes
So in php we do this
$query = mysql_query("SELECT ID,Notes FROM tblOne ORDER BY ID");
echo "<form name=\"mian\" method=\"post\" action\"$PHP_SELF\">\n";
for($i=0;$i<mysql_num_rows($query);$i++) {
echo "<input type=\"text\" name=\"notes_" . mysql_result($query,$i,0) . "\" value=\"" . mysql_result($query,$i,0) . "\"><br />\n";
} //end for
echo "</form>\n";
okay now your form will be generated with fields named things like notes_1, notes_2, ..., notes_x
Then in the processor do this
$query = mysql_query("SELECT ID,Notes FROM tblOne ORDER BY ID");
for($i=0;$i<mysql_num_rows($query);$i++) {
$curVar = "notes_" . mysql_result($query,$i,0);
echo $HTTP_POST_VARS[$curVar] . "<br>\n";
}//end for