- Yazılım Yolcusu
- 2020-05-09
Kullanıcı giriş işlemleri kontrol kodu
Derste işlemiş olduğumuz kod iyi çalışmalar.
if ($ad && $sifre) {
$kullanicisor=$baglanti->prepare("SELECT * from kullanici where kadi=:ad and sifre=:sifre");
$kullanicisor->execute(array(
'ad'=>$ad,
'sifre'=>$sifre));
$say=$kullanicisor->rowCount();
if ($say >0) {
// $_SESSION['ad']=$ad;
header('Location:../index.php');
}else{
header('Location:../login.php?durum=no');
} }