Dear All,
I have a problem with auto submit form.
This is sample myform.php :
<?
echo "<form action=\"form_act.php\" name=\"tform\" method=\"POST\">";
echo "Name : <input type=\"text\" name=\"name\">";
echo "<input type=\"hidden\" name=\"fhidden\" value=\"My Place\">";
echo "<input type=\"submit\" name=\"submit\" value=\"SUBMIT\">";
echo("</form>");
?>
I have 2 conditions :
1) If press submit button, displayed :
Hello $_POST[name], welcome to $_POST[fhidden]
2) If not press submit button in 1 minute, auto displayed :
Time is Over ( Only 1 minute to put your name )
Hello $_POST[name], welcome to $_POST[fhidden]
help me..