aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/GUIKontrol/RadioBox/Input_Radiobox.php

41 lines
553 B
PHP
Raw Normal View History

2022-02-23 22:44:33 +01:00
<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>