Hi JosephHanh
To be specific you are setting a timer for each questions and send the answer after the time consumed whether there is an answer or none.
You may use the JQuery function let say you have a form consist of question and you need to wait with delay() function and then submit() the form itself
$(function() {
$('#form').delay(30000).submit();
});
hope it helps
auto submit form
Moderators: egami, macek, gesf
- WebOutGateway
- php-forum Fan User
- Posts: 65
- Joined: Mon Jun 13, 2011 9:25 pm
- Location: Pasig City, Philippines
- Contact:
Hi,
Try this:
if (isset($_GET['var']))
{
// SUBMIT FORM
}
else
{
// leave the page alone
}
Thanks
Try this:
if (isset($_GET['var']))
{
// SUBMIT FORM
}
else
{
// leave the page alone
}
Thanks