July 19, 200818 yr Hi, Does anybody know how i could limit the number of form submissions on my website. Im going to be having a signup page that saves the form data to a csv file, however i want to limit the number of people that can sign up to 40. Any ideas? Thanks.
July 19, 200818 yr On the submit of each submission, either add a number to a database or another txt file. Then on the form have a lookup to make sure 40 isn't hit.
July 19, 200818 yr Author On the submit of each submission, either add a number to a database or another txt file. Then on the form have a lookup to make sure 40 isn't hit. Thanks for the reply, please could you explain what you mean.
July 20, 200818 yr If you were doing it with a file, create a text file with the number 0 in it. Then before the form is shown, open the file read the number if it is less than 40, show the form. Once the form has been submitted, update the file by taking the number and adding 1 to it. Same thing for the database, except you would have a row for it rather than a file.
Create an account or sign in to comment