Re: [PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Michael Elliott
After using your suggestion, I found an additional SPELLING mistake that was causing my problem! Thanks for your help - Original Message - From: "Jonathan Hilgeman" <[EMAIL PROTECTED]> To: "'Michael Elliott'" <[EMAIL PROTECTED]> Cc: <[

Re: [PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Michael Elliott
gt; ... > } > > So even if $PasswordEntered equals "Secrets", it won't be the same, because > it won't match the encrypted password. > > - Jonathan > > -Original Message- > From: Michael Elliott [mailto:[EMAIL PROTECTED]] > Sent: Thursday, De

[PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Michael Elliott
I am trying to create an admin page to administer my database. I used a file .sql to create my database. In the file, I included: grant select, insert, update, delete on database.* to admin@localhost identified by 'password'; Why can I not log in successfully using admin and password? Thanks