aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/GUIKontrol/RadioBox/Input_Radiobox.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01: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>