Ein radiobutton wird ausgewählt und an das php script verschickt.
Zu jedem radiobutton ist eine txt-Datei zugewiesen
Der PHP script soll nachsehen welcher von den 3 radiobuttons ausgewählt wurde und die entsprechende Datei auswählen um die Zahl dort um eins zu erhöhen. Wie kriege ich das mit der Auswahl im PHP Script hin?
-----------------HTML Seite-----------------
<form name="" method="post" action="vote.php">
<table width="140" border="0" cellspacing="0" cellpadding="1" align="center">
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant1">
<td>
<td width="85%">ja</td>
</tr>
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant2">
</td>
<td width="85%">nein</td>
</tr>
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant3">
</td>
<td width="85%">Manchmal</td>
</tr>
</table>
<table width="139" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="91"> </td>
<td width="48">
<input type="submit" value="vote">
</td>
</tr>
</table>
------------------------------------------------------
Bitte um die hilfe
[Editiert von archie am 10-03-2002 um 14:28]
Zu jedem radiobutton ist eine txt-Datei zugewiesen
Der PHP script soll nachsehen welcher von den 3 radiobuttons ausgewählt wurde und die entsprechende Datei auswählen um die Zahl dort um eins zu erhöhen. Wie kriege ich das mit der Auswahl im PHP Script hin?
-----------------HTML Seite-----------------
<form name="" method="post" action="vote.php">
<table width="140" border="0" cellspacing="0" cellpadding="1" align="center">
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant1">
<td>
<td width="85%">ja</td>
</tr>
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant2">
</td>
<td width="85%">nein</td>
</tr>
<tr>
<td width="15%">
<input type="radio" name="vote" value="ant3">
</td>
<td width="85%">Manchmal</td>
</tr>
</table>
<table width="139" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="91"> </td>
<td width="48">
<input type="submit" value="vote">
</td>
</tr>
</table>
------------------------------------------------------
Bitte um die hilfe
[Editiert von archie am 10-03-2002 um 14:28]
Kommentar