Undefined variable

shane2267
08:14:10
Hi

I have downloaded the dd3.php script for the multiple drop down menu. When I run the program I am getting 2 errors:-

Undefined variable: HTTP_GET_VARS in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dd3.php on line 50

Undefined variable: HTTP_GET_VARS in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dd3.php on line 56


line 50 - $cat=$HTTP_GET_VARS['cat'];
line 56 - $cat3=$HTTP_GET_VARS['cat3'];


Any help would be appreciated.

Thankyou in advance

Shane
smo1234
08-14-2010
Please try by changing two lines to this.

$cat=$_GET['cat'];
$cat3=$_GET['cat3'];

Or you can supress the warnings by this

@$cat=$_GET['cat'];
@$cat3=$_GET['cat3'];

Please Login to post your reply or start a new topic