aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/00-Anwendungen-Beispiele-Uebungen/GUIKontrol/RadioBox/RadioBox.php

41 lines
504 B
PHP
Raw Normal View History

2022-02-23 22:44:33 +01:00
<html>
<head>
<title>Text des Titels</title>
</head>
<body>
<h1>Hier wird abkassiert!</h1>
<form action="input_radiobox.php" method="post">
<p>Geben Sie Ihre Zahlungsweise an:</p>
<p>
<input type="radio" name="Zahlmethode" value="Mastercard"> Mastercard<br>
<input type="radio" name="Zahlmethode" value="Visa"> Visa<br>
<input type="radio" name="Zahlmethode" value="AmericanExpress"> American Express
<br><br>
<input type="submit" value="Absenden">
</p>
</form>
</body>
</html>