0

My questions is similar to this one, but I am interested in posting the data to PHP. I couldn't find anything on Google about this and was wondering if anyone knew the answer?

In essence, how many characters can you put in an input field, submit the form and then successfully receive all of the characters in a PHP script?

Thanks in advance.

Community
  • 1
  • 1
Styphon
  • 10,304
  • 9
  • 52
  • 86
  • 1
    Check answer of this question http://stackoverflow.com/questions/1752768/is-there-a-max-size-to-the-length-of-a-hidden-input-in-html – Irfan DANISH Oct 25 '13 at 10:29
  • 1
    Doesn't that other question give a strong hint that the answer depends on the browser and its version (apart of course from server-side restrictions)? – Jon Oct 25 '13 at 10:29
  • @Jon I'm guessing server-side restrictions will kick in first, I don't know if any exist though. I couldn't find any by Google, hence the question. – Styphon Oct 25 '13 at 10:32

1 Answers1

2

It does depend mainly on the server confinguration. As an example:

php_value post_max_size 50M
jacek_podwysocki
  • 807
  • 10
  • 30