...also es schaut im Moment so aus: $res = mysql_query ("SELECT UserID, UserName, tore FROM users ORDER BY tore DESC"); $num = mysql_num_rows($res); echo mysql_error(); echo "<table width="80%" border="0" bgcolor="gainsboro">"; echo"<tr>"; echo"<td width="20%">Benutzer Name</td>"; echo"<td width="20%">Tore</td>"; echo"<td width="20%">Tore eintragen:</td>"; echo"</tr>"; echo"</table>"; for ($i=0; $i<$num; $i++) { $ui = mysql_result($res, $i, "UserID"); $un = mysql_result($res, $i, "UserName"); $to = mysql_result($res, $i, "tore");
echo" <form action="tabelleneintrag_inc.php" method="get">"; echo "<table width="80%" border="0" bgcolor="DDB62D">"; echo"<tr>"; echo"<td width="20%">$un</td>";
echo"<td width="20%">$to</td>";
echo"<td width="20%"><input name="tore" type="text"></td>"; echo"</tr>";
echo"</table>"; echo"<input name="submit" type="submit" value="Absenden">"; echo"</form>";
...aber wenn ich es so mache habe ich schon das Problem das ich nicht nur einen Submit Button habe obwohl ich ja alles in einem Formular habe, oder nicht? ... und wie kann ich dann die einzelnen Felder der jeweiligen Person zuordnen?