I'm getting my ass kicked with this sha password. My database filed is at Varcar when I limit it to 100 characters, it seems like it's not enough so the passwords never match. When I take it up to 200 characters I get an error.
What's the correct way to do this?
$pass=hash('sha512', $_POST['mypassword']);
$query_wins ="SELECT * FROM `ttourmember` WHERE `email` = \"$email\" AND `password`=\"$pass\" AND `isactive`='Y'";
$result=mysql_query($query_wins) or die(mysql_error());
$result= mysql_query($query_wins);
$row = mysql_fetch_array($result);
$memid= $row['memberid'];
if($memid==""){
$return['error'] = true;
$return['msg'] = "Wrong Email Or Password Try Again $memid";
}