Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/projekt/quiz/

account.php
admin_register.php
create_quiz.php
create_tables.php
index.php
login.php
nav.css
nav.php
quiz.php
quiz_select.php
register.php
result_details.php
result_simple.php
submit_create_quiz.php
submit_quiz.php

index.php

29 lines UTF-8 Windows (CRLF)
<?php
session_start
();
include(
'../../incl/dbconnect.php');
?>
<!DOCTYPE html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <title>Quiz Portal</title>
    <link rel="stylesheet" href="nav.css">
</head>
<body>
    <?php include 'nav.php'?>

    <div class="container">
        <h1>Välkommen till Quiz</h1>

        <?php if (isset($_SESSION['username'])): ?>
            <p>Inloggad som: <strong><?php echo $_SESSION['username']; ?></strong></p>
            

              <a href="quiz_select.php">Välj ett quiz att starta</a>
        <?php else: ?>
            <p><a href="login.php">Logga in</a> eller <a href="register.php">skapa ett konto</a> för att spela quiz</p>
        <?php endif; ?>
    </div>
</body>
</html>