You are viewing limited content. For full access, please sign in.

Question

Question

How to only allow form to be submitted only certain number of times?

asked on January 14, 2015

I am building a form that is a sign up form for training. I am wondering if I can limit the form to "X" number of submissions? Ideally this would be automatic and once the form had been submitted "X" times it would become unavailable?

0 0

Replies

replied on January 14, 2015

You could potentially put in a script to do this. Have a database that stores how many slots left. When the form is submitted a workflow lowers that number by one.

 

The Form will have to check that number twice. Once when it opens, once when you try to submit. If the number has reached 0, you can use javascript to redirect to another page and/or turn the form into a giant "Sorry, this training class is all filled up" page. 

 

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.