mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
16 lines
244 B
PHP
16 lines
244 B
PHP
<p>Das ist Ihr Ergebnis:
|
|
<br>
|
|
<br>
|
|
<?php
|
|
$result = $hauptstadt;
|
|
if ($result == 2)
|
|
{
|
|
$loesung = "richtig geraten!";
|
|
}
|
|
else
|
|
{
|
|
$loesung = "leider falsch geraten, bitte noch einmal versuchen";
|
|
}
|
|
echo $loesung
|
|
?>
|