aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/00-Anwendungen-Beispiele-Uebungen/GUIKontrol/RadioBox/Input_Radiobox.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

41 lines
553 B
PHP

<html>
<head>
<title>Text des Titels</title>
</head>
<body>
<h1>Ihre Auswahl!</h1>
<?php
/** Author: Matthias von Orelli **/
/** Datum: Juni 2005 **/
/** Version: 1.0 **/
/** Applikation: Radiobox **/
/* Deklaratione */
Define ("CRLF", "\n<br>");
/* Die getroffene Auswahl wird ausgegeben */
If (isset($Zahlmethode)) echo("Ihre Auswahl ist: ") .$Zahlmethode .CRLF;
/* If (isset($zutat1)) echo("Ihre Auswahl ist: ") .$zutat1 .CRLF;
If (isset($zutat2)) echo("Ihre Auswahl ist: ") .$zutat2 .CRLF;
*/
?>
</body>
</html>