AStrangerWCandy Posted August 31, 2009 Share Posted August 31, 2009 Okay so adding crypt () to the password box on my Login script since I did on my registration script and am getting the following error after doing so: Warning: mysql_result() expects parameter 1 to be resource, boolean given in URL on line 106 here is line 106: $Count = mysql_result ($result2,0); and here is the line in context to what I did: $securepass = crypt ($_POST['password']); $sql2 = "SELECT count(*) FROM Users WHERE userName='$_POST[username]' AND passWord='$securepass'"; $result2 = mysql_query($sql2); $Count = mysql_result ($result2,0); Link to comment https://forums.phpfreaks.com/topic/172527-latest-issue-crypt-causing-problems/ Share on other sites More sharing options...
ignace Posted August 31, 2009 Share Posted August 31, 2009 $securepass = crypt ($_POST['password']); $sql2 = "SELECT count(*) FROM Users WHERE userName='$_POST[username]' AND passWord='$securepass'"; $result2 = mysql_query($sql2) or trigger_error('Error: ' . mysql_error()); $Count = mysql_result ($result2,0); Link to comment https://forums.phpfreaks.com/topic/172527-latest-issue-crypt-causing-problems/#findComment-909639 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.