Link to home
Start Free TrialLog in
Avatar of ellandrd
ellandrdFlag for Ireland

asked on

time delay in submitting form

how would i prevent user from submitted a form to much inside a time period.

eg. only allow them submit the form say 1 with a 2 min period.  if user trys to submit form within these 2 mins, stop them.. etc etc
ASKER CERTIFIED SOLUTION
Avatar of Roonaan
Roonaan
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ellandrd

ASKER

im not using a database. its just a simple PHP page with a form that displays the info that you submitted...

will the above till work?
The above uses session rather than database. If you allow sessions it will work.
Alternatively you could set a cookie of course. But that can be deleted by the end user.

-r-