aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/GUIKontrol/RadioBox/RadioBox.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

41 lines
504 B
PHP

<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>