Large PHP enable web form - around 75 field - how best to send email with all fields?
- by Derek
Have created simple Ajax enabled contact forms before that have around 12 fields - worked fine....
Now working on a PHP enabled web page for job applications that has around 100 fields.
The ajax technique I was using was to send request via querystrings (&val1=test;&val2=test2 and etc ...)
That is not going to scale very well with larger form with 100+ fields.
Any suggestions to point me in the right direction would be appreciated.
Maybe use jQuery Form plug-in instead? http://jquery.malsup.com/form/#getting-started
Derek