USD Logo MySanDiego | Libraries | Torero Store | Find People | A to Z Index | Resources | Jobs
 Prospective Students | Current Students | Alumni, Parents & Friends | Faculty & Employees | Visitors | International
About USDAdmissionsAcademicsNews and EventsAdministrationAthleticsGiving

HTTP_*_VARS gone

HTTP_*_VARS gone

Everywhere that you use any of the global variables of the form $HTTP_something_VARS, you will need to replace with $_something. The $HTTP global variables are no longer available.

$HTTP_POST_VARS$_POST
$HTTP_GET_VARS$_GET
$HTTP_SERVER_VARS$_SERVER
$HTTP_COOKIE_VARS$_COOKIE

You do not need to specify a “globals” line for any of the new underscore globals. They are automatically global and available to all functions.