mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
24 lines
347 B
PHP
24 lines
347 B
PHP
<?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;
|
|
?>
|