Hi, thank you for you replies, I'm sorry for the late response.
Actually I have done some research but unfortunately I couldn't find the javascript countdown you mentioned.
But, I managed to find something with PHP that serves the basic function that I am searching.
I use this in my starting page
Code:
<?php $timestart=time(); ?>
<input type="hidden" name="timestart" value="<?echo $timestart; ?>">
And this in my results page
Code:
$timestart = $_POST['timestart'];
$timeend=time();
$used_time=$timeend-$timestart;
$used_time=date('s',$used_time);
This is functional, but does not take account of the loading time of the page (since my quiz uses quite lots of images, loading time may vary due to user's internet speed), and thus, it puts those with slower internet at a disadvantage.
Actually, I am more interested in the Live Counter you are talking about. Indeed it will make it more interesting 
Is this strictly only achievable through Javascript? If possible can you give me more pointers for me to make this live counter? or should I create a new thread at Javascript forum to prevent this going too much out of topic?
Anyway, thanks a lot for the responses keyboard1333 and james438
Bookmarks