quiz

PHP Quiz Script

PHP Quiz Script

Hard coding a graded quiz script in PHP

Quizzes are generally used to test knowledge of a subject.
This is a simple script that will allow you to create a quiz and grade the answers given.

PHP Code:

<?php
$let=array(
"a","b","c","d","e","f","g","h","i",
"j","k","l","m","n","o","p","q","r",
"s","t","u","v","w","x","y","z"
);
 
//Set a counter to 1
$count = 1;
 
/* What is a perfect score? Usually 100. */
 
$psco=100;
 
/* Deduction for each wrong answer. May be the perfect score divided by the number of questions

Syndicate content