Hi,
ich wähle mit einem RadioButton einen Datensatz aus. Dieser wird mit Post übermittelt.
Ich habe das Problem, dass ich den Datensatz nicht anhand
eines Wertes eindeutig
ermitteln kann. Ich brauch Namen
und Vornamen.
Hier noch etwas mehr Text:
Delphi-Quellcode:
while ($dsatz = mysql_fetch_assoc($res))
{
echo "<tr>";
echo "<td><input type='radio' name='auswahl' value='" . $dsatz["name"] . "'></td>";
echo '<td>
<font face="Arial" size="2">' . $dsatz["name"] . "</font></p></td>";
echo '<td>
<font face="Arial" size="2">' . $dsatz["vorname"] . "</font></p></td>";
echo '<td>
<font face="Arial" size="2">' . $dsatz["strasse"] . "</font></p></td>";
....
Viele Grüße,