Submitting and receiving a large number of form fields
Hi,
Would really appreciate help with solving something that I am sure is pretty straightforward.
I've got a form with a variable number of form fields, that I need to submit to a separate Coldfusion page to record the results in a database. Basic stuff. The number of form fields can grow to well over the permitted value of form fields that the server will allow, and I don't want to change that for security reasons.
The form contains fields along the lines of :
person1
address1
age1
person2
address2
age2,
etc
...where the number could be considerable depending upon the condition that generated the list of people, and as a result, with 3x the number of form fields per person, it has been known to push it over the limit.
So my question is, is there a way of passing a large number of form fields safely? I've read that JSON, or a combination of jQuery and JSON might be an option, but I'm finding examples difficult to come by. I've had no experience of using JSON.
What would be incredibly useful if there was an example of reading the form fields into a suitable format, how to pass the field values to the page to be submitted to, and how to extract them on the page submitted to that allows me to read them into a database.
Sorry if this is really basic, but it's not been an issue before, and i'm a bit stumped as to how to solve it.
Many thanks in advance
