I'm pretty sure this is a config. problem. I can't see POST variables when they're called like this:
echo $HTTP_POST_VARS['user'];
but I see them if I call them like this:
echo $_POST['user'];
Any suggestions on what might be the problem?
In php.ini:
; Whether or not to register the old-style input arrays, HTTP_GET_VARS ; and friends. If you're not using them, it's recommended to turn them off, ; for performance reasons. register_long_arrays = Off
Yeah, I just checked and they were turned off. I turned them on and my scripts are working fine. Thank you.