Page 1 of 1

Begging request about a php script.

Posted: Sat Aug 30, 2008 11:41 am
by Sharp
Hi all,

I really need some help in finding and setting up a php script which would allow me to run a multiple choice test on my website. In order to give you all a better idea, I will list what I need:

1) A multiple choice test with 4 answers for each question.
2) The results of the test should not be scored, rather the test will lead to a page which comments on the results, e.g. - 65% = average etc..
3) A timer which stops the continuation of the test when the time expires.
4) The ability to have the test appear on my website, so the background and colour scheme can be customised.

If anyone knows of any freeware or cheap scripts that I can buy which would allow me to get something similar to this, I would be eternally grateful. I have googled for a VERY long time, and almost everything I have found has turned out to be grossly overpriced. :(

Thanks,

Richie :D

Posted: Sat Aug 30, 2008 11:54 am
by me.prosenjeet
Check this....
http://igivetest.com/online-demo.html
It is expensive though :roll:

Or have a look at this:
http://www.sameshow.com/quiz-creator.html
This has an option to integrate it it in a website...I have used it on my site as a demo...check it here:
http://www.pdssite.com/Services.php
(in the Addons check Quiz demo)
1) A multiple choice test with 4 answers for each question.
2) The results of the test should not be scored, rather the test will lead to a page which comments on the results, e.g. - 65% = average etc..
3) A timer which stops the continuation of the test when the time expires.
4) The ability to have the test appear on my website, so the background and colour scheme can be customised.
All your requirements can be achieved from the second one I suggested

Posted: Sat Aug 30, 2008 1:47 pm
by BaconFries
Hi Sharp found this site although you have to pay for the scripts they are very cheap and they have a simple quiz that may suit you.
http://www.stuff4web.co.uk/php-scripts-for-sale.htm

Posted: Sat Aug 30, 2008 2:39 pm
by me.prosenjeet

Posted: Sat Aug 30, 2008 2:43 pm
by Eddy
This one das not need a database and its free.


http://www.cj-design.com/products/free_ ... choicequiz

Easy to make in your page and you can change layout and background color.


Inside your <head> you need this:

Code: Select all

		<script type="text/javascript" src="quiz_config.js"></script>
		<script type="text/javascript" src="quiz_functions.js"></script>

And wherever you want your quiz to appear, you need the code:

Code: Select all

	<script type="text/javascript">
			renderQuiz();
		</script>
		<noscript>
			You must have JavaScript enabled to view the quiz
		</noscript>


The answers come with a popup.

Image



You can shange the answers.

Code: Select all

// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, I think you need to go back to school (or try again)!";

3) A timer which stops the continuation of the test when the time expires.
This you have to make by yourself or mail the owner if he can implement this future in the script.


Or use after session timeouts.
After sesion timeouts you have no results!

http://javascript.internet.com/page-det ... e-out.html


Eddy.

Posted: Mon Sep 01, 2008 4:18 pm
by Sharp
Eddy, yet again - thanks!!
Excellent info buddy, really appreciate it.

Richie :D

Posted: Mon Sep 01, 2008 5:17 pm
by Eddy
Welcome,maybe you can use that script for your quiz :D

Eddy.