Javascript jquery php sayfa yenilenmeden işlem kontrolü
Üye giriş bölümünde giriş butonuna tıkladıktan sonra bilgiler kontrol.php ye gönderilecek veritabanı işlemleri burada yapılacak ve sonuç yine login.php sayfasında gösterilecek.
login.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mhmtalizm</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<h1 id="sonucMSG"></h1>
<form id="GirisFormu" method="post">
<label>Kullanıcı Adı</label>
<input type="text" name="kullanici">
<label>Şifre</label>
<input type="password" name="sifre">
<input type="submit" id="GirisBTN" value="Giriş Yap">
</form>
<script type="text/javascript">
$(document).ready(function(){
$("#GirisBTN").click(function (){
var uye = $("[name=kullanici]").val();
var sifre = $("[name=sifre]").val();
$.ajax({
type:"post",
url:"kontrol.php",
data:{uye,sifre},
success:function(sonuc){
$("#sonucMSG").html(sonuc);
}
});
return false;
});
});
</script>
</body>
</html>
kontrol.php
<?php
$u = $_POST["uye"];
$p = $_POST["sifre"];
// mysql işlemleri
echo "Giriş Başarılı";
?>