finished advanced demo

This commit is contained in:
csimonis 2024-09-17 15:10:42 +02:00
parent f0e551e99b
commit 17f79f777d

@ -4,28 +4,19 @@ $antwort1 = $_POST['frage-1'];
$antwort2 = $_POST['frage-2']; $antwort2 = $_POST['frage-2'];
$antwort3 = $_POST['frage-3']; $antwort3 = $_POST['frage-3'];
function zeigeErgebnis(string $gegebeneAntwort, string $richtigeAntwort): void
{
if ($gegebeneAntwort === $richtigeAntwort) {
echo 'richtig';
} else {
echo "falsch ($richtigeAntwort)";
}
}
?> ?>
<h2>Antwort 1 ist <?php <h2>Antwort 1 ist <?php zeigeErgebnis($antwort1, 'Hund') ?>
if ($antwort1 === 'Hund') {
echo 'richtig';
} else {
echo 'falsch';
}
?>
</h2> </h2>
<h2>Antwort 2 ist <?php <h2>Antwort 2 ist <?php zeigeErgebnis($antwort2, 'Blau'); ?>
if ($antwort2 === 'Blau') {
echo 'richtig';
} else {
echo 'falsch';
}
?>
</h2> </h2>
<h2>Antwort 3 ist <?php <h2>Antwort 3 ist <?php zeigeErgebnis($antwort3, 'Banane'); ?>
if ($antwort3 === 'Banane') {
echo 'richtig';
} else {
echo 'falsch';
}
?>
</h2> </h2>