Reputation:
<input type="hidden" value="12345">
I need to set value="12345" attribute to the size of 5,000 characters. What is a max characters I can set this attribute to when using POST method to send a form? Is it limited by the maximum POST method?
Upvotes: 1
Views: 630
Reputation: 491
It depends if you are using the POST or GET method for your form action.
More comprehensive answers are already available such as here: What is the maximum length of a URL in different browsers?
Upvotes: 1