I just can't seem to figure out how the employment sites and such are able to let the user submit a resume and a coverletter in the same form! I thought there was a limit on how much can be passed as form data. Does anyone know? I've had to split up my forms and submit every individual textarea via the url using javascript and a pop-up window (it's fast, but still...).
Look in your php.ini for max_upload_size or something like that. Not sure about max form 'data' but i would imagine it is limited by that setting.
-Jon
Those values were all set fine, but I found my problem in the meantime. I wasn't designating a submit method. When I set it to POST everything worked fine. Kinda funny, really. Thanks, though.