This commit is contained in:
csimonis 2024-09-17 15:01:14 +02:00
commit 7344d98415
2 changed files with 60 additions and 0 deletions

29
demo/index.php Normal file
View file

@ -0,0 +1,29 @@
<form method="post" action="lösung.php">
<h2>Welches Tier bellt?</h2>
Hund: <input type="radio" name="frage-1" value="Hund">
<br>
Katze: <input type="radio" name="frage-1" value="Katze">
<br>
Biene: <input type="radio" name="frage-1" value="Biene">
<br>
<h2>Welche Farbe ist der Himmel bei gutem Wetter?</h2>
Rot: <input type="radio" name="frage-2" value="Rot">
<br>
Blau: <input type="radio" name="frage-2" value="Blau">
<br>
Grün: <input type="radio" name="frage-2" value="Grün">
<br>
<h2>Welche Frucht ist Gelb?</h2>
Banane: <input type="radio" name="frage-3" value="Banane">
<br>
Birne: <input type="radio" name="frage-3" value="Birne">
<br>
Kiwi: <input type="radio" name="frage-3" value="Kiwi">
<br>
<button type="submit">Absenden</button>
</form>