Hi,
I used to get the value of my form just by using the name of the element. Like this:
<input type=text name=chk value=1>
....
echo $chk;
Now we change our server, and I need to use this:
$chk=$HTTP_POST_VARS['chk'];
I don't want to change all my codes. Is there is something in the ini file that I can change?
Thanks,
Assaf