
February 24th, 2000, 04:24 PM
|
|
Junior Member
|
|
Join Date: Feb 2000
Location: durham, nc, usa
Posts: 14
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
We've used the POST method in this case. Is there some limit to the amount of data you can send with a POST? Is there some additional work required to work with posted data? From what I know, post is really a file transfer command and sends large data in blocks. The additional benefit is that it does not display the arguments as part of the URL.
Now, is there some additional work I need to be doing to pull down the now potentially very large selection from the list object in my form.
In this case, the object may contain thousands of rows and the user may legitimately want to select and send a thousand or more keys from the selection with this form. My understanding was that Post would break up the form data and PHP would reassemble the data on the other end and handle everything exactly as if it had been a small data set sent with GET method. What am I overlooking? PHP docs are no help and this situation seems to arise infrequently enough that it is not addressed in articles here or at WebMonkey.
|