Is it possible to $_GET a string which contains a question mark?
Say I have a variable "$string" and I have a link to the page like: http://whatever.com/string.php?string=astringwitha?andalittletextafterwards
And I get the string like so: $string=$_GET['string']
It seems $string will only receive: astringwitha
and the rest is dropped.
Any ideas?
make sure you urlencode($string) before it winds up in the query string, or you will have the problem of anything after a ? getting dropped. then when you bring it back do $string = urldecode($_GET['string']
That did the trick. Thanks a lot! 😃