I am using core php. i am trying to print the query string, both key and values. but the keys with space is getting converting into underscore.
this is my simple php code
<?php
print_r($_REQUEST);
?>
and the URL i am hitting - http://localhost/user.php?A%20String=wqe%20qwe
result - Array( [A_String] => wqe qwe)
In the result A String is converting into the A_String, value is showing the space correctly but key is not. Is there any solution to this since i have parameters with underscore also ?