PDA

View Full Version : $http_get_vars


pie
08-18-2003, 09:33 PM
Quick question how would i go about using $HTTP_GET_VARS..

I want to use a global through a few steps, from a text box... to entering it through the db on another step.

Thanks, the way im doing it doesnt seem to work :confused:

filburt1
08-18-2003, 09:39 PM
Try using session variables (if you mean for the variable to persist across multiple page loads). See http://www.php.net/session .

Also, use $_GET. $HTTP_[GET|POST]_VARS is deprecated.

pie
08-18-2003, 09:45 PM
Thanks, i tried sessions but mucked up. Ill look at GET/Post ;) Cheers Filby