|
Is there a way to target only certain form elements for reading?
I'm looking to pluck a value out of the form, and I know that the value I'm looking for will either be in field 10,20,30,40,50 ... and so on. The field I'm targeting will always be a multiple of ten.
At present I'm parsing all of the fields until I find it, but this seems wasteful, as I only need to search every tenth field.
On a related note, is there a maximum limit (chars) that PHPwill accept. In other words, can a form have 500 fields?
Thank you.
|