Online quiz

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sobha
Forum Commoner
Posts: 56
Joined: Wed Jul 15, 2009 9:08 pm

Online quiz

Post by sobha »

Hi,

Can anyone send me source code for creating online quiz that can contain all type of questions like fill in the blanks,single choice questions ,multiple choice questions.

Regards,
Sobha
cronika
Forum Commoner
Posts: 27
Joined: Sun Jul 26, 2009 2:28 pm
Location: romania
Contact:

Re: Online quiz

Post by cronika »

I don't think that someone will post the script but if you are trying to create it and post the errors you got then someone will help.
cpetercarter
Forum Contributor
Posts: 474
Joined: Sat Jul 25, 2009 2:00 am

Re: Online quiz

Post by cpetercarter »

Don't re-invent the wheel. Use hotpotatoes
sobha
Forum Commoner
Posts: 56
Joined: Wed Jul 15, 2009 9:08 pm

Passing html value to a phpvariable in same page

Post by sobha »

Hi,

How to pass the value of course in form1 to item_name in form f2 as a php variable?

<form action="" name="f1">
<input type="radio" align="middle" name="course" value="A">
<input type="radio" align="middle" name="course" value="B">
<input type="radio" align="middle" name="course" value="C">
</form>
<form action="" name="f2">
<input type="hidden" name="item_name" value=<?php $value?> />
</form>

Please help

Regards,
Sobha
Post Reply