mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
11 lines
160 B
PHP
11 lines
160 B
PHP
|
<?php
|
||
|
if($Benutzer == "PHP" or $Kennwort == "geheim")
|
||
|
{
|
||
|
echo "Willkommen!";
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
echo "Sorry, bitte nochmal versuchen!";
|
||
|
}
|
||
|
?>
|