Connecting Tech Pros Worldwide Forums | Help | Site Map

Error message- Notice: Undefined index:

Hal Halloway
Guest
 
Posts: n/a
#1: Jul 17 '05
How do I fix this error message below? Thanks.


Notice: Undefined index: key_word in C:\Program Files\Apache
Group\Apache2\htdocs\search010.php on line 55

....
if( $_GET['key_word'] ) { // line 55

// connect to the database
mysql_pconnect("localhost","sarah","password")
or die("ERROR: Could not connect to database!");
mysql_select_db("howto");
....

Dani CS
Guest
 
Posts: n/a
#2: Jul 17 '05

re: Error message- Notice: Undefined index:


Hal Halloway wrote:[color=blue]
> How do I fix this error message below? Thanks.
>
>
> Notice: Undefined index: key_word in C:\Program Files\Apache
> Group\Apache2\htdocs\search010.php on line 55
>
> ...
> if( $_GET['key_word'] ) { // line 55[/color]

Change it into:

if (isset($_GET['key_word']))
[color=blue]
>
> // connect to the database
> mysql_pconnect("localhost","sarah","password")
> or die("ERROR: Could not connect to database!");
> mysql_select_db("howto");
> ...[/color]
Closed Thread