my auth not working like, my code is below.
<?php
$login = "super";
printf(crc32($login)); // result -691938802
printf("%u",crc32($login)); //result 3603028494
if(crc32($login) * -1 == -3603028494) {
echo "user correct";
}else{
echo "user false";
}
?>
i always getting user false, so, i think the problem come from %u , how i can change my $login variable with something like $login = "%usuper"
so my auth code working ? is it possible change $login
value only without change if condition, because i will use it in login form in the future.
Thanks.