16.04.2016, 17:58
It doesnt help so much.
I think this is the script for crytable password.
I think this is the script for crytable password.
PHP код:
#####################################################
$guest=0;
$numes = $_COOKIE['user'];
$parola = $_COOKIE['pass'];
if((isset($numes))&&(isset($parola))) {
$userc = $_COOKIE['user'];
$passc = $_COOKIE['pass'];
}
else
{
$guest=1;
}
if($guest==0) {
$USERQ = "SELECT Name, Password FROM players WHERE Name='$userc' AND Password='$passc'";
$CHECKU = mysql_query($USERQ) or die('DonT Try To hack.');
$user = $userc;
$pass = $passc;
$guest=0;
if(!mysql_num_rows($CHECKU)=="1")
{
header("location:logout.php");
}
}
#####################################################