I have the problem, that PHP replaces all spaces with underscores in POST and GET variables.
For example if I have the URL: http://localhost/proxy.php?user name=Max the browser will convert it to http://localhost/proxy.php?user%20name=Max.
But if I give the $_GET parameters out, the key is not user name but user_name (note the underscore)!
Is there any possibility to change this behaviour?
From the PHP manual:
And a comment on the page: