Hello,
I'm building a wrapper for a website to handle various things for users and one of the things I'm stumped on is content passed to PHP from a posted form.
Some of the form variables contain characters like periods and spaces. These get converted by PHP into underscores whn they're posted to a PHP script. Naturally this breaks things pretty bad.
Example: name="some_name goes.here" would be changed to "some_name_goes_here".
I don't have access to change the form variables on the remote website. Any ideas on how to deal with this? A RAW method of accessing POST variables would be ideal. I've yet to see a solution for that though.
($HTTP_POST_VARS contains mangled variable names and is unusable.)