Begging request about a php script.

Do you want to share WYSIWYG Web Builder tips, tricks, tutorials or useful HTML code? You can post it here...
(no questions or problems please, this section is not monitored by support).
Forum rules
This section is to share tips, tricks and tutorials related to WYSIWYG Web Builder.
Please do not post questions or problems here. They will not be answered.

PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
Post Reply
Sharp

Begging request about a php script.

Post 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
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post 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
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
BaconFries
 
 
Posts: 5364
Joined: Thu Aug 16, 2007 7:32 pm

Post 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
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post 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.
Sharp

Post by Sharp »

Eddy, yet again - thanks!!
Excellent info buddy, really appreciate it.

Richie :D
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Welcome,maybe you can use that script for your quiz :D

Eddy.
Post Reply