Do you support the $HTTP_*_VARS variables Print

  • 0

We do not guarantee that PHP scripts using theis older and insecure global variables will work with our service, and you should be using the modern equivalents:

Such variables include:
$HTTP_GET_VARS (should use $_GET)
$HTTP_COOKIE_VARS (should use $_COOKIE)
and $HTTP_POST_VARS (should use $_POST)


Was this answer helpful?

« Back