so i read here : http://www.w3schools.com/php/php_get.asp
that the $_GET function only allows max 2000 characters
but my question is what if i used 2 $_GET functions ? like
[php]
<? echo $_GET['a']; echo $_GET['b']; ?>[/php]
will it work if i used
.php?a=(2000char)&b=(2000char) ???
thanks in advance