-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsil.php
30 lines (27 loc) · 799 Bytes
/
sil.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Kayıt Silme - Veritabanı Uygulaması</title>
</head>
<body>
<div style="text-align:center;">
<a href="index.html">ANA SAYFA</a> - <a href="liste.php">KAYIT LİSTESİ</a> - <a href="yeni.php">YENİ KAYIT</a>
<br><hr><br><br>
</div>
<?php
$baglan = new mysqli("localhost","mehmet","1234","deneme");
$baglan->set_charset("utf8");
$kayitno = $_GET["id"];
$sorgu= $baglan->query("delete from ogrenciler where id=$kayitno");
if ($sorgu) {
echo "<script>
alert('Kayıt Silindi!');
window.location.href = 'liste.php';
</script>";
} else {
echo "Kayıt Silinemedi.";
}
?>
</body>
</html>