Hallo
Ich wollte mir ein kleines Vote script erstellen, aber ich komme im moment nicht weiter.
Man soll auf einer Seite anklicken können für was man voten will.(irgendwie logisch) Dazu hab ich volgendes geschrieben:
<html>
<head>
</head>
<body>
<form action="vote.php" method="post">
Wie findet ihr meine Homepage?<br>
<table>
<tr><td>Gut</td><td><input type="radio" name="antwort1" value="0" id="v10"></tr>
<tr><td>Geht so</td><td><input type="radio" name="antwort2" value="0" id="v10"></tr>
<tr><td>Scheiße</td><td><input type="radio" name="antwort3" value="0" id="v10"></tr>
</table>
<input type="submit" value="Senden">
</form>
</body>
</html>
Aber wie erkenne ich auf der seite vote.php was der User nun angeklickt hat?
irgendwie so?
if (antwort1 = "on")
???
Naja vieleicht könnt ihr mir helfen.
Guss Gothicer