Is $_REQUEST case sensitive ?
I mean i am passing a variable with value in uppercase to a URL via query string and when i read the variable at the recieving end, i get it in lowercase.
This causes problems with MS SQL Server which is case sensitive.
I am using new version of PHP
PHP Version 4.3.0 on windows 2000
e.g.
Value before passing A!S@D#F$
encryption before passing encrypt I)[HL+N,
after passing, see both converted to lowercase.
i)[hl+n,
a!s@df$
I am using $pass = $_REQUEST('pass') ;
$pass as it is will not give me any value. (register_globals is set to off)
How do i maintain the case as it is from a querystring ?
Thanks.
Brij.