Webbserverprogrammering 1

Show sourcecode

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

webbserver/Projekt1/

createquiz.php
createtable.php
dbconnection.php
index.php
login.php
myquiz.php
registrera.php
results.php
results2.php
takequiz.php

index.php

24 lines ASCII Windows (CRLF)
<!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>
    <h1>Quiz</h1>
    <p><a href="myquiz.php">Dina Quiz</a></p>
    <p><a href="createquiz.php">Skapa Quiz</a></p>


    <?php 
    
include("dbconnection.php");

    if (!isset(
$_SESSION['user_id'])) {
        
header("Location: login.php");
    }
    
    
$dbconn null;
    
?>
</body>
</html>