m1/www/public/upp6/result.php
2024-09-03 14:50:13 +02:00

50 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8" />
<title>Quiz med Formulär och PHP</title>
</head>
<body>
<h1>Resultat</h1>
<?php
$points = 0;
$ansOne = $_POST['qOne'];
$ansTwo = $_POST['qTwo'];
$ansThree = $_POST['qThree'];
$ansFour = $_POST['qFour'];
$ansFive = $_POST['qFive'];
$ansSix = $_POST['qSix'];
if($ansOne == '2005')
$points++;
if($ansTwo == 'sep')
$points++;
if($ansThree == 'two')
$points++;
if($ansFour == 'valter')
$points++;
if($ansFive == '183')
$points++;
if($ansSix == 'eight')
$points++;
if($points >= 2 && $points < 3) {
echo '<strong>Du fick '.$points.' av 6 möjliga</strong><br>';
echo "Läs på mer och försök igen.";
}
else if($points >= 3 && $points <= 4) {
echo '<strong>Du fick '.$points.' av 6 möjliga</strong><br>';
echo "Godkänd.";
}
else if($points >= 5){
echo '<strong>Du fick '.$points.' av 6 möjliga</strong><br>';
echo "Bra, du behärskar det mesta.";
}
?>
</body>
</html>