When i am accessing a url querystring from the url, if the query string contains "+" character the "+" is not displated when we echo using the @_GET['queryname']
can anybody tell me how to get the string with the "+"
regds., Ranga
In a URL, + is translated to a space. If you want a + in a URL, it has to be written there as %2B.
thank you for the info