View Single Post
Old 12-19-2003, 01:25 PM   #3 (permalink)
bdonalds
Registered User
 
Join Date: Dec 2003
Posts: 5
bdonalds is on a distinguished road
I am going take a wild guess at the problem.... Are you using the "GET" method in your form tag. Try using the "POST" mehtod instead. GET passes all of the form info as part of the URL and it is limited to 1024 characters (or is it 2048...I forget). POST sends straight to stdout.

Usually, going over the limit just truncates your form data, but wihtout seeing your code, if the "action" page requires a certain variable that is getting truncated or something like that, it could cause problems.

Also, don't forget that you will need to make some changes to grab the variables when you change from GET to POST...i.e. change the $_GET['varname'] to $_POST['varname']

Of course, I may have guessed wrong about the whole thing!

If that's not it, send me a link to the page, or some code to look at.

Bryan
bdonalds is offline   Reply With Quote