On Sun, 15 Dec 2002, David wrote: > It is coming from this line: > > this is line 43 code > > # $myquery = .'" AND password = '" . crypt($password, "xpz8ty") . "'"; You have the wrong quotes and such. It should look like this: $myquery .= " AND password = '".crypt($password,"xpz8ty")."'"; --------------------------------------------------------------------------- Peter Beckman Internet Guy beckman@purplecow.com http://www.purplecow.com/ --------------------------------------------------------------------------- -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php