2009/2/9 Andrew Williams <andrew4williams@xxxxxxxxx>: > Hi, > Hi, > Can some body help out on how to validate user password from the database? There are several possibilities. This would be one. <? $query = 'SELECT 1 from `usertable` where `name` = ' . mysql_real_escape_string(STRIPPED_AND_TRIMMED_REQUEST_VAR_HERE) . ' AND `pass` = md5("' . mysql_real_escape_string(STRIPPED_AND_TRIMMED_REQUEST_VAR_HERE) . '");'; ?> > > Thanks > Andrew > Bye,bye -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php