codeweek/demo/fortgeschritten/loesung.php

23 lines
524 B
PHP
Raw Normal View History

2024-09-17 13:01:14 +00:00
<?php
$antwort1 = $_POST['frage-1'];
$antwort2 = $_POST['frage-2'];
$antwort3 = $_POST['frage-3'];
2024-09-17 13:10:42 +00:00
function zeigeErgebnis(string $gegebeneAntwort, string $richtigeAntwort): void
{
if ($gegebeneAntwort === $richtigeAntwort) {
2024-09-17 13:01:14 +00:00
echo 'richtig';
} else {
2024-09-17 13:10:42 +00:00
echo "falsch ($richtigeAntwort)";
2024-09-17 13:01:14 +00:00
}
2024-09-17 13:10:42 +00:00
}
?>
<h2>Antwort 1 ist <?php zeigeErgebnis($antwort1, 'Hund') ?>
2024-09-17 13:01:14 +00:00
</h2>
2024-09-17 13:10:42 +00:00
<h2>Antwort 2 ist <?php zeigeErgebnis($antwort2, 'Blau'); ?>
2024-09-17 13:01:14 +00:00
</h2>
2024-09-17 13:10:42 +00:00
<h2>Antwort 3 ist <?php zeigeErgebnis($antwort3, 'Banane'); ?>
2024-09-17 13:01:14 +00:00
</h2>