Goign back to your original post...
These are not the same thing.$_POSTwill contain the values from the form field if the POST method was used to submit the form.$_GETwill contain those values if the GET method was used.
In either case, PHP url-decodes the values before you run your script: You should simply match againstuser One(etc.).
Unless I'm missing something.

