Re: [PHP-DB] Connecting to mySQL database

2002-02-16 Thread DL Neil
Hi Alvin, > I'm new to both PHP and mySQL but have no choice but to "crash-course" on > both before end of mid of march to complete my University project. I would > really appreciate alittle help from any kind soul out there. > > I have already created a mySQL database and create all the tables *

[PHP-DB] Connecting to mySQL database

2002-02-16 Thread Alvin Ang
Hi ppl, I'm new to both PHP and mySQL but have no choice but to "crash-course" on both before end of mid of march to complete my University project. I would really appreciate alittle help from any kind soul out there. I have already created a mySQL database and create all the tables *well at lea

Re: [PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Michael Elliott
EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 11:46 AM Subject: RE: [PHP-DB] Connecting to MySQL Database > Try moving session_start to the very top of the script (above the require > statement), and then place the session_register on the line immediately > below session_

RE: [PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Jonathan Hilgeman
would be to put all the session information at the very top of the script. - Jonathan -Original Message- From: Michael Elliott [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 8:40 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Connecting to MySQL Database Alright here goes

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

RE: [PHP-DB] Connecting to MySQL Database

2001-12-13 Thread Jonathan Hilgeman
dEntered 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, December 13, 2001 5:54 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Connecting to MyS

[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