-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfunctions.php
97 lines (86 loc) · 1.6 KB
/
functions.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
define("DEVELOPMENT",TRUE);
function dbConnect(){
$db=new mysqli("localhost","root","","raport");// Sesuaikan dengan konfigurasi server anda.
return $db;
}
$con = dbConnect();
function bisa($con, $query)
{
$db = mysqli_query($con, $query);
if ($db) {
return 1;
} else {
return 0;
}
}
function getListPelajaran()
{
$conn = dbConnect();
if($conn->connect_errno==0){
$res=$conn->query("SELECT *
FROM mata_pelajaran
ORDER BY kd_mp");
if($res){
$data=$res->fetch_all(MYSQLI_ASSOC);
$res->free();
return $data;
}
else
return FALSE;
}
else
return FALSE;
}
function getList($query)
{
$conn = dbConnect();
if($conn->connect_errno==0){
$res=$conn->query($query);
if($res){
$data=$res->fetch_all(MYSQLI_ASSOC);
$res->free();
return $data;
}
else
return FALSE;
}
else
return FALSE;
}
function getListSiswa()
{
$conn = dbConnect();
if($conn->connect_errno==0){
$res=$conn->query("SELECT *
FROM siswa
ORDER BY nis");
if($res){
$data=$res->fetch_all(MYSQLI_ASSOC);
$res->free();
return $data;
}
else
return FALSE;
}
else
return FALSE;
}
function ambilsatubaris($conn, $query)
{
$db = mysqli_query($conn, $query);
return mysqli_fetch_assoc($db);
}
function hapus($where, $table, $con)
{
$query = 'DELETE FROM ' . $table . ' WHERE ' . $where;
echo $query;
}
function showError($message){
?>
<div style="background-color:#FAEBD7;padding:10px;border:1px solid red;margin:15px 0px">
<?php echo $message;?>
</div>
<?php
}
?>