in reply to CGI Post Data Size

It would be 102400 Bytes. If you want to set it to 50 bytes, set it to 50.

Note that the mapping between bytes and characters is depending on the encoding you use. If you use latin1 for example, each character is one byte.

But if you want to set such a small limit, chances are that what you really want is to limit the input size of your form elements.

Replies are listed 'Best First'.
Re^2: CGI Post Data Size
by Gangabass (Vicar) on Sep 12, 2007 at 06:27 UTC

    But remember to check field size again on the server side with Perl regardless of setting field limit in HTML form.