aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/02 Grundlagen/01 Inlcude, Prog Strukturen/Erstellen sie ein GUI für BL endif/endif2.php

24 lines
347 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
$Mathenote = 1;
$Deutschnote = 5;
if ($Mathenote == 1 or $Deutschnote == 1):
?>
<h1>Gratulation zum Ferienlager!</h1>
<?php
elseif($Mathenote == 6 xor $Deutschnote == 6):
?>
<h1>Du musst leider Nachhilfeunterricht nehmen!</h1>
<?php
else:
?>
<h1>Du musst leider zuhause bleiben und lernen!</h1>
<?php
endif;
?>