|
-
Jun 11th, 2005, 04:20 PM
#1
Thread Starter
Banned
Online Test [RESOLVED]
How can I make some kind of online test? Like there is questions and 4 answers, and you check which answer you want and when your done click a button to grade it.
Last edited by ThaRubby; Jun 11th, 2005 at 08:16 PM.
-
Jun 11th, 2005, 05:50 PM
#2
Thread Starter
Banned
Re: Online Test
<form method="post" action"quiz.php">
Question 1 <b>blah blah blah</b><br>
answer 1:<input type="radio" value="a" name="answer"><br>
answer 2:<input type="radio" value="b" name="answer"><br>
answer 3:<input type="radio" value="c" name="answer"><br>
<input type="submit" value="check my answers" name="submit"><br>
</form>
<?php
$answer=$_POST["answer"];
if ($answer == "a")
{
echo "correct";
}
?>
NVM got it =DD
-
Jun 11th, 2005, 07:04 PM
#3
Fanatic Member
Re: Online Test
ahem... are you forgetting somthing [cough]resolved, checkmark[/cough]
-
Jun 11th, 2005, 08:16 PM
#4
Thread Starter
Banned
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|