finished advanced demo
This commit is contained in:
parent
f0e551e99b
commit
17f79f777d
@ -4,28 +4,19 @@ $antwort1 = $_POST['frage-1'];
|
||||
$antwort2 = $_POST['frage-2'];
|
||||
$antwort3 = $_POST['frage-3'];
|
||||
|
||||
?>
|
||||
<h2>Antwort 1 ist <?php
|
||||
if ($antwort1 === 'Hund') {
|
||||
function zeigeErgebnis(string $gegebeneAntwort, string $richtigeAntwort): void
|
||||
{
|
||||
if ($gegebeneAntwort === $richtigeAntwort) {
|
||||
echo 'richtig';
|
||||
} else {
|
||||
echo 'falsch';
|
||||
echo "falsch ($richtigeAntwort)";
|
||||
}
|
||||
?>
|
||||
</h2>
|
||||
<h2>Antwort 2 ist <?php
|
||||
if ($antwort2 === 'Blau') {
|
||||
echo 'richtig';
|
||||
} else {
|
||||
echo 'falsch';
|
||||
}
|
||||
|
||||
?>
|
||||
<h2>Antwort 1 ist <?php zeigeErgebnis($antwort1, 'Hund') ?>
|
||||
</h2>
|
||||
<h2>Antwort 3 ist <?php
|
||||
if ($antwort3 === 'Banane') {
|
||||
echo 'richtig';
|
||||
} else {
|
||||
echo 'falsch';
|
||||
}
|
||||
?>
|
||||
<h2>Antwort 2 ist <?php zeigeErgebnis($antwort2, 'Blau'); ?>
|
||||
</h2>
|
||||
<h2>Antwort 3 ist <?php zeigeErgebnis($antwort3, 'Banane'); ?>
|
||||
</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user