Chris Go wrote:

Hi,

From what I know, there are 2 ways of doing it.  The main point is that only
one form can be submitted at one time so if you have a bunch of forms, there
is really not an easy way to submit all those values in one shot...

(1) via javascript variables (or arrays) or
  var formFields = ['fieldName1','fieldName2', 'fieldName3', ... ];
  var formValues = ['fieldValue1','fieldValue2', 'fieldValue3', ... ];

(2) using a separate form with all the fields as hidden... you have to map
out your select boxes, checkboxes though so that you can set the values in
the hidden fields properly...

I would probably do #2.
 

Even without trying it yet, I know that is exactly what I wanted,

Thanks, it's also much clearer to me after reading a couple of chapters last night in my JS book

--
-+-+-+-+-+-
 

bobb

http://64.33.167.222/
 

Reply via email to