codeweek/demo/fortgeschritten/index.php

30 lines
850 B
PHP
Raw Normal View History

2024-09-17 13:39:26 +00:00
<form method="post" action="loesung.php">
2024-09-17 13:01:14 +00:00
<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>