How much data can be sent via $_GET in PHP5? Is there a maximum number of variables, string length etc? Thanks in advance.
+5
A:
Although the specification of the HTTP protocol does not specify any maximum length, practical limits are imposed by web browser and server software:
Stefan Gehrig
2010-05-20 11:01:55
+2
A:
There is no limit defined in the RFC, but browsers limit the URL length (including get variables). IE for instance limits the URL length to 2083 characters, Opera about 4,050, Netscape 6 about 2,000 characters. A general rule of thumb is, that you shouldnt use more than 256 characters.
softcr
2010-05-20 11:02:13