Jump to content

Latest issue, crypt () causing problems.


AStrangerWCandy

Recommended Posts

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

$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);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.