The following files exists in this folder. Click to view.
email.php
index.php
login.php
logout.php
email.php
13 lines ASCII Windows (CRLF)
<?php foreach ($questions as $question) {
$color = "red";
if ($question["providedAnswer"] == $question["correctAnswer"])
$color = "green";
?>
<p>
Question: <?php echo $question["question"]; ?><br>
Your answer: <span
style="background-color: <?php echo $color; ?>"><?php echo $question["providedAnswer"]; ?></span><br>
Correct answer: <?php echo $question["correctAnswer"]; ?>
</p>
<?php } ?>