forked from rizwanshereef/campktm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployee-grid-data.php
75 lines (57 loc) · 2.91 KB
/
employee-grid-data.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
<?php
/* Database connection start */
$servername = "localhost:3306";
$username = "campktmm_soorya";
$password = "passwd";
$dbname = "campktmm_keraladata";
$conn = mysqli_connect($servername, $username, $password, $dbname) or die("Connection failed: " . mysqli_connect_error());
/* Database connection end */
// storing request (ie, get/post) global array to a variable
$requestData= $_REQUEST;
$columns = array(
// datatable column index => database column name
0 =>'name',
1 => 'age',
2=> 'sex',
3=> 'addr',
4=> 'location',
5=> 'camp',
);
// getting total number records without any search
$sql = "SELECT name, age, sex, addr, location, camp ";
$sql.=" FROM dbktm ";
$query=mysqli_query($conn, $sql) or die("employee-grid-data.php: get employees");
$totalData = mysqli_num_rows($query);
$totalFiltered = $totalData; // when there is no search parameter then total number rows = total number filtered rows.
$sql = "SELECT name, age, sex, addr, location, camp ";
$sql.=" FROM dbktm WHERE 1=1 ";
if( !empty($requestData['search']['value']) ) { // if there is a search parameter, $requestData['search']['value'] contains search parameter
$sql.=" AND ( name LIKE '".$requestData['search']['value']."%' ";
$sql.=" OR addr LIKE '".$requestData['search']['value']."%' ";
$sql.=" OR location LIKE '".$requestData['search']['value']."%' ";
$sql.=" OR camp LIKE '".$requestData['search']['value']."%' )";
}
$query=mysqli_query($conn, $sql) or die("employee-grid-data.php: get employees");
$totalFiltered = mysqli_num_rows($query); // when there is a search parameter then we have to modify total number filtered rows as per search result.
$sql.=" ORDER BY ". $columns[$requestData['order'][0]['column']]." ".$requestData['order'][0]['dir']." LIMIT ".$requestData['start']." ,".$requestData['length']." ";
/* $requestData['order'][0]['column'] contains colmun index, $requestData['order'][0]['dir'] contains order such as asc/desc */
$query=mysqli_query($conn, $sql) or die("employee-grid-data.php: get employees");
$data = array();
while( $row=mysqli_fetch_array($query) ) { // preparing an array
$nestedData=array();
$nestedData[] = $row["name"];
$nestedData[] = $row["age"];
$nestedData[] = $row["sex"];
$nestedData[] = $row["addr"];
$nestedData[] = $row["location"];
$nestedData[] = $row["camp"];
$data[] = $nestedData;
}
$json_data = array(
"draw" => intval( $requestData['draw'] ), // for every request/draw by clientside , they send a number as a parameter, when they recieve a response/data they first check the draw number, so we are sending same number in draw.
"recordsTotal" => intval( $totalData ), // total number of records
"recordsFiltered" => intval( $totalFiltered ), // total number of records after searching, if there is no searching then totalFiltered = totalData
"data" => $data // total data array
);
echo json_encode($json_data); // send data as json format
?>