Quellcode von form_04.php
<!-- form_04.php 03.2012 bi
Radiobuttons
-->
<html>
<body>
<?php
$ps=$_SERVER['PHP_SELF'];
if (!isset($_GET['senden'])){ // ---------------------------- F O R M U L A R
echo "<h3>Formular mit Radiobuttons</h3>\n";
echo "Bitte geben Sie Ihren Lieblingsgegenstand an: \n";
echo "<form action='$ps' method='get'>\n";
echo "<input type='radio' name='radiobutton' value='Mathematik'>Mathematik<br />\n";
echo "<input type='radio' name='radiobutton' value='Physik' checked='checked'>Physik<br />\n";
echo "<input type='radio' name='radiobutton' value='Informatik'>Informatik<br />\n";
echo "<br />";
echo "<input type='submit' name='senden' value='fertig'>\n";
echo "</form>\n";
}
else { // ----------------------- A U S W E R T U N G
$radiobutton=$_GET['radiobutton']; // Einlesen der Variablen
echo "<p>Ihr liebstes Schulfach ist wirklich $radiobutton?</p>\n";
}
?>
</body>
</html>