in reply to Re^3: GET overriding POST?
in thread GET overriding POST?

Thanks for your reply, but i think the following might debunk that:

If i output the $ENV{'CONTENT_LENGTH'} variable with nothing in the forms, the size is 22. However, if i put one char in a field and hit submit, the size increases by one. If i put n chars in the form, $ENV{'CONTENT_LENGTH'} increases by n. So the CGI script is getting the length of the POST input, im just nto sure how else to access it (other than doing read(STDIN, $x, $ENV{'CONTENT_LENGTH'})).

Replies are listed 'Best First'.
Re^5: (OT) GET overriding POST?
by wazoox (Prior) on Mar 17, 2006 at 11:57 UTC
    Check what's in $HTTP_GET_VARS, that's all I see. However we're getting really off-topic now :)