PHP Classes

File: example/test.php

Recommend this page to a friend!
  Classes of Samuel Adeshina   TeXML   example/test.php   Download  
File: example/test.php
Role: Example script
Content type: text/plain
Description: A test file
Class: TeXML
Create and evaluate online questionnaire tests
Author: By
Last change: Merge branch 'master' of https://github.com/Samshal/TeXML
Date: 8 years ago
Size: 704 bytes
 

Contents

Class file image Download
<?php
   
require_once("../src/TeXML.php");


   
$texml = new TeXML();

   
//$options = array(2, 4, 6, 20, 10);
   
$question = $texml->DisplayQuestion();
    if (
$question == -1)
    {
       
header("Location: gen.php");
    }
    else
    {
       
//print_r($question);
       
$q = $question["Question"];
        echo
"<body style='font-size: 2em; background-color: #FFEFD5'>";
        echo
"QUESTION: ".$q."<br/><br/>";
        echo
'<form action="accept.php" method="get" style="background-color: #87CEFA">';
        foreach (
$question["Options"] as $key => $value) {
           
$key = $key + 1;
            echo
"<input type='radio' name='A' value='$key' /> $value<br/>";
        }
        echo
"<center><input type='submit' value='Submit' style='width: 20%' /></center></form></body>";
    }
?>