in other words:
<input type="hidden" value="Can I put as much as I want in here, or is there a limit?" />
and if so, what is it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on the method you send the form with.
With GET, there is a commonly agreed on limit of about 1-2 kilobytes, depending on browser and server limitations.
With POST, there is no technical limit in the browser, but usually one on the server side – see e.g. Apache’s
LimitRequestBody, PHP’spost_max_sizeand so on.