Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread Burhan
Quoting Justin French <[EMAIL PROTECTED]>: > Burhan, > > Please try to quote the right person when replying to a thread -- your > messages was, I assume, intended for Chinmoy Barua, not me. > > It saves confusion, and keeps the thread more useful and easier to > follow. My apologies Justin, I

Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread Justin French
Burhan, Please try to quote the right person when replying to a thread -- your messages was, I assume, intended for Chinmoy Barua, not me. It saves confusion, and keeps the thread more useful and easier to follow. Thanks, Justin French On Tuesday, August 26, 2003, at 04:17 PM, Burhan wrote:

Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread Burhan
Quoting Justin French <[EMAIL PROTECTED]>: > On Tuesday, August 26, 2003, at 04:04 PM, Chinmoy Barua wrote: > > > Hello everybody, > > > > I want to authenticate my user from web with PHP > > script. The user's passwords are stored in System as > > MD5 format (in /etc/shadow). > > > > Can anybod

Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread Justin French
On Tuesday, August 26, 2003, at 04:04 PM, Chinmoy Barua wrote: Hello everybody, I want to authenticate my user from web with PHP script. The user's passwords are stored in System as MD5 format (in /etc/shadow). Can anybody help me? Which part do you want help with? The form? The SQl query? The

Re: [PHP] MD5 System Password check with PHP

2003-08-26 Thread murugesan
First store the password in the DB as $passwd=md5($passwd) insert into table values( $passwd); get the user password and check by comparing if(md5($password)==$fetchedpasswdfromDB) { ... } -murugesan - Original Message - From: "Chinmoy Barua" <[EMAIL PROTECTED]> To: <[EMAIL PRO