2
- Qoşuldu
- 6 Sen 2022
- Mesajlar
- 142
- Reaksiya hesabı
- 27
- Xallar
- 28
salam,
Bu yuxardakı kimi mysqla sorğu göndərəndə niyə işləyir? $req hissəsinə nəzər yetirin
Amma bu cür yazanda işləmir fərq nədi xaiş izah edin
PHP:
if(isset($_POST["button"])){ #isset
$login=$_POST["login"];
$pass=$_POST["pass" ];
$req=$conn->query("select pass from users where login='$login'")->fetch_assoc();
if(password_verify($pass,$req["pass"])){
echo "ok";
exit;
}
else {
echo "sehv oldu";
}
} #isset
echo '<form method="POST" action="">';
echo 'Login: <input type="text" name="login"><br>';
[B]echo[/B] 'Sifre: <input type="text" name="pass"><br>';
[B]echo[/B] '<input type="submit" name="button" value="DaxiL oL"><br>';
Bu yuxardakı kimi mysqla sorğu göndərəndə niyə işləyir? $req hissəsinə nəzər yetirin
Amma bu cür yazanda işləmir fərq nədi xaiş izah edin
PHP:
if(isset($_POST["button"])){ #isset
$login=$_POST["login"];
$pass=$_POST["pass" ];
$req=$conn->query("select * from users where login='$login' and pass='$pass'")->fetch_assoc();
if(password_verify($pass,$req["pass"])){
echo "ok";
exit;
}
else {
echo "sehv oldu";
}
} #isset
echo '<form method="POST" action="">';
echo 'Login: <input type="text" name="login"><br>';
[B]echo[/B] 'Sifre: <input type="text" name="pass"><br>';
[B]echo[/B] '<input type="submit" name="button" value="DaxiL oL"><br>';
Sonuncu dəfə moderator tərəfindən redaktə edilib: