Posting Static & Variable length data to the Server with JQUERY & Coldfusion
- by nobosh
I'm looking to post the following type of data to a server using JQUERY & Coldfusion:
foodID - int
foodDESC - text html text from a WYSIWYG (CKEDITOR)
--there will always be just 1 foodID and foodDESC per POST to the server but there can be a variable number of:
locationID - int
LocationDesc - text
--There can be 0-8+ of these.
Should I send this in one post or multiple posts?
If one post, what's the smartest way to do this? I'm never had to deal with this much data before.
Thank you