Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/projects/anton-quiz/admin/
create_answer.php
create_question.php
create_quiz.php
dashboard.php
edit_quiz.php
show_results.php
view_details.php
create_answer.php
48 lines UTF-8 Windows (CRLF)
<?php
session_start();
if (!$_SESSION["is_admin"]) {
header('Location: ../index.php');
die();
}
require_once __DIR__ . '/../dbconnect.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="../endpoints/admin/add_answer.php" method="post">
<input type="hidden" name="question_id" value="<?php echo $_GET["question_id"]; ?>">
<label for="answer">Lägg till svar:</label>
<input type="text" name="answer">
<label for="is_correct">Rätt</label>
<input type="radio" name="is_correct" id="is_correct" value="1">
<label for="is_correct">Fel</label>
<input type="radio" name="is_correct" id="is_correct" value="0" checked>
<button type="submit">Spara svar</button>
</form>
<?php
$stmt = $conn->prepare("SELECT test_id FROM quizdb_questions WHERE id = ?");
$stmt->bind_param("i", $_GET["question_id"]);
$stmt->execute();
$test_id = $stmt -> get_result() -> fetch_all()[0][0];
?>
<a href="create_question.php?test_id=<?php echo $test_id; ?>">Skapa ny fråga</a>
<a href="dashboard.php">Tillbaka</a>
</body>
</html>