in reply to Re: Passing a lot of form values
in thread Passing a lot of form values

It's very long, I have a lot of comments but you *should* be able to follow it:

Nope. You may consider at least putting that in <readmore> tags...

I just cant think of how I would make this work with 1 form and passing 1500 form fields.

What's wrong with the fields having names like "row1col1"... "row150col10"?

Replies are listed 'Best First'.
Re^3: Passing a lot of form values
by Trihedralguy (Pilgrim) on May 23, 2007 at 15:06 UTC
    I thought it was a bad practice to have 1500 variables?
      I thought it was a bad practice to have 1500 variables?

      But... I don't think you will have 1500 variables. At most you will have a single (hash) variable holding all the relevant data. OTOH I suppose you may use JavaScript on the client side to preprocess the data into some condensed stuff to send. That may viable if you know JS. With AJAX you may even transmit the entries one at a time, but I suppose that would mean lots of interactions with the database and I'm not sure that's what you want...