954,587 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Help for online exam--timer needed

Dear All

To conduct online exams

we need to set timer for say 60 minutes or 90 minutes

after this time the user should be logged of fiocrcefully

Please help me for the code in php

Can I use session for this ...

vikaspa
Newbie Poster
8 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
 

When you start:

$_SESSION['time'] = time()+(60*60)

Everywhere else:

if ($_SESSION['time'] < time()) {
     die ('You\'re too late. Better luck next time.');
} else {
     // Let them continue
}
MagicMedia
Junior Poster
149 posts since Jul 2010
Reputation Points: 20
Solved Threads: 35
 

You must also consider javascript in mind. load server time in javascript and manage countdown clock there.

http://www.w3schools.com/js/js_timing.asp

urtrivedi
Nearly a Posting Virtuoso
1,306 posts since Dec 2008
Reputation Points: 257
Solved Threads: 270
 

thanks alot for value added help
can I display the count down om user's screen

vikaspa
Newbie Poster
8 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
 

yes you can

urtrivedi
Nearly a Posting Virtuoso
1,306 posts since Dec 2008
Reputation Points: 257
Solved Threads: 270
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: