PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Martijn Waeyenbergh   PHP Quiz Questions and Answers   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Quiz Questions and Answers
Present quizzes using INI configuration files
Author: By
Last change:
Date: 2 years ago
Size: 543 bytes
 

Contents

Class file image Download
<?php
    session_start
();
   
session_destroy();

    require_once(
"class.quiz.php");
    require_once(
"class.quizBoard.php");

   
// reset the session if already started
   
session_start();
   
session_destroy();

   
$quizBoard = new quizBoard();

?>

<!DOCTYPE html>
<html>
<head>
    <title>Quiz</title>
    <link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>

    <div class="wrapper">
        <h1>Choose the quiz you want to play</h1>
        <hr>
        <?php
           
echo $quizBoard->showQuizes();
       
?>
</div>

</body>
</html>