-
Notifications
You must be signed in to change notification settings - Fork 6
/
hapus_konfirm.php
51 lines (47 loc) · 1.45 KB
/
hapus_konfirm.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/*
* Sistem Informasi Sekolah
* Ditambahkan pada v2.0
*
* Program ini adalah program Donasi http://phpbego.wordpress.com
* Anda hanya saya minta sedikit donasi untuk program ini, tidak lebih.
* Jika anda menghargai program saya, silakan anda hubungi saya
*
* SMS : 085263616901
* Email : phpbego@yahoo.co.id, phpbego@gmail.com
*
*/
/*
* File ini digunakan untuk konfirmasi penghapusan data
* Anda dapat menggunakannya dari file manapun
*
* Kami belum memikirkan tentang keamanan cara ini
* Namun efektif dan dengan kode yang lebih sederhana
*/
$f = mysql_real_escape_string($_GET['f']);
$id = mysql_real_escape_string($_GET['id']);
function alert_proses($f, $id, $kembali)
{
echo "<form method='POST' action='hapus_proses.php'>
<input type='hidden' name='f' value='".$f."'>
<input type='hidden' name='id' value='".$id."'>
<div class='bs-callout bs-callout-info'>
<h4>Apakah anda ingin menghapus data ini?</h4>
<p><input class='btn btn-danger' type='submit' value='Lanjutkan'> <a class='btn btn-success' href=".$kembali.">Batal</a></p>
</div></form>";
}
switch ($f)
{
case "jadwal":
alert_proses($f, $id, '?page=tampil_jadwal');
break;
case "absensi":
alert_proses($f, $id, '?page=tampil_jadwal');
break;
case "kalender":
alert_proses($f, $id, '?page=tampil_kal');
break;
default :
echo "<h3>Proses tidak diketahui</h3>";
break;
}