Im trying to send a query string in url
for ex : url : localhost/myfile.php?number=8777,+9822,+9883
in myfile.php when i give echo the query string :
echo $_REQUEST['number'];
output :
8777,9822,9883
but the expected output is :
8777,+9822,+9883
How can i display + sign also.
UPDATE :
actually that url is web request from the android/ios device app,
im providing webservice in php,
so android/ios developers are sending request with a querystring contains + sign
so how can i handle this situation?
localhost/myfile.php?number=8777,%2B9822,%2B9883