[PHP] Re: MySQL PASSWORD() Question

2002-08-27 Thread Tony Harrison
cheers Richard Lynch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... If I insert a row's field's value using the PASSWORD() function, will I need to use it or another function to find that row using the same field? You'll need to do this when somebody tries to log in later:

[PHP] Re: MySQL PASSWORD() Question

2002-08-26 Thread Richard Lynch
If I insert a row's field's value using the PASSWORD() function, will I need to use it or another function to find that row using the same field? You'll need to do this when somebody tries to log in later: ?php $username = $_POST['username']; # Or $PHP_AUTH_USER or $_GET['username'] or ...