php-db | 2002122
Date: 12/16/02
- Next message: David Eisenhart: "[PHP-DB] Re: approaching a relational database"
- Previous message: Cornelia Boenigk: "[PHP-DB] Get error message, need help"
- In reply to: David: "[PHP-DB] Get error message, need help"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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 <email protected> http://www.purplecow.com/
---------------------------------------------------------------------------
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: David Eisenhart: "[PHP-DB] Re: approaching a relational database"
- Previous message: Cornelia Boenigk: "[PHP-DB] Get error message, need help"
- In reply to: David: "[PHP-DB] Get error message, need help"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

