Re: PLS HELP: Script to mail
It's most likely because the new server is setup with the
register_globals setting off. This means that instead of using
$REMOTE_ADDR you'll now use $_SERVER['REMOTE_ADDR']
register_long_arrays is probably set to off also so
$HTTP_POST_VARS['action'] should be changed to $_POST['action']
|