-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_data.php
227 lines (167 loc) · 5.17 KB
/
process_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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<?php
include "database.php";
//process_data.php
if (isset($_POST["query"])) {
// $conn = new PDO("mysql:host=localhost; dbname=unibooks", "root", "");
$data = array();
$limit = 12;
$page = 1;
if ($_POST["page"] > 1) {
$start = (($_POST["page"] - 1) * $limit);
$page = $_POST["page"];
} else {
$start = 0;
}
if ($_POST["query"] != '') {
$condition = preg_replace('/[^A-Za-z0-9\- ]/', '', $_POST["query"]);
$condition = trim($condition);
$condition = str_replace(" ", "%", $condition);
$sample_data = array(
':product_image' => '%' . $condition . '%',
':productlink' => '%' . $condition . '%',
':product_name' => '%' . $condition . '%'
);
$query = "
SELECT id, product_image, product_name, productlink FROM producttb WHERE product_image LIKE :product_image
OR productlink LIKE :productlink OR product_name LIKE :product_name
ORDER BY id DESC
";
$filter_query = $query . ' LIMIT ' . $start . ', ' . $limit . '';
$statement = $conn->prepare($query);
$statement->execute($sample_data);
$total_data = $statement->rowCount();
$statement = $conn->prepare($filter_query);
$statement->execute($sample_data);
$result = $statement->fetchAll();
$replace_array_1 = explode('%', $condition);
foreach ($replace_array_1 as $row_data) {
$replace_array_2[] = '<span style="background-color:#' . rand(100000, 999999) . '; color:#fff">' . $row_data . '</span>';
}
foreach ($result as $row) {
$data[] = array(
'id' => $row["id"],
'image' => str_ireplace($replace_array_1, $replace_array_2, $row["product_image"]),
'link' => str_ireplace($replace_array_1, $replace_array_2, $row["productlink"]),
'name' => str_ireplace($replace_array_1, $replace_array_2, $row["product_name"])
);
}
} else {
$query = "
SELECT id, product_image, product_name, productlink FROM producttb WHERE type=1
ORDER BY id DESC
";
$filter_query = $query . ' LIMIT ' . $start . ', ' . $limit . '';
$statement = $conn->prepare($query);
$statement->execute();
$total_data = $statement->rowCount();
$statement = $conn->prepare($filter_query);
$statement->execute();
$result = $statement->fetchAll();
foreach ($result as $row) {
$data[] = array(
'id' => $row["id"],
'image' => $row['product_image'],
'name' => $row['product_name'],
'link' => $row['productlink']
);
}
}
$pagination_html = '
<div class="bd-example mt-4">
<nav aria-label="Standard pagination example">
<ul class="pagination">
';
$total_links = ceil($total_data / $limit);
$previous_link = '';
$next_link = '';
$page_link = '';
if ($total_links > 4) {
if ($page < 5) {
for ($count = 1; $count <= 5; $count++) {
$page_array[] = $count;
}
$page_array[] = '...';
$page_array[] = $total_links;
} else {
$end_limit = $total_links - 5;
if ($page > $end_limit) {
$page_array[] = 1;
$page_array[] = '...';
for ($count = $end_limit; $count <= $total_links; $count++) {
$page_array[] = $count;
}
} else {
$page_array[] = 1;
$page_array[] = '...';
for ($count = $page - 1; $count <= $page + 1; $count++) {
$page_array[] = $count;
}
$page_array[] = '...';
$page_array[] = $total_links;
}
}
} else {
for ($count = 1; $count <= $total_links; $count++) {
$page_array[] = $count;
}
}
for ($count = 0; $count < count($page_array); $count++) {
if ($page == $page_array[$count]) {
$page_link .= '
<li class="page-item active">
<a class="page-link" href="#" aria-label="Previous">' . $page_array[$count] . '
</a>
</li>
';
$previous_id = $page_array[$count] - 1;
if ($previous_id > 0) {
$previous_link = '<li class="page-item"><a class="page-link" href="javascript:load_data(`' . $_POST["query"] . '`, ' . $previous_id . ')"><span aria-hidden="true">«</span></a></li>';
} else {
$previous_link = '
<li class="page-item disabled">
<a class="page-link" href="#"><span aria-hidden="true">«</span></a>
</li>
';
}
$next_id = $page_array[$count] + 1;
if ($next_id >= $total_links) {
$next_link = '
<li class="page-item disabled">
<a class="page-link" href="#"><span aria-hidden="true">»</span></a>
</li>
';
} else {
$next_link = '
<li class="page-item"><a class="page-link" href="javascript:load_data(`' . $_POST["query"] . '`, ' . $next_id . ')"><span aria-hidden="true">»</span></a></li>
';
}
} else {
if ($page_array[$count] == '...') {
$page_link .= '
<li class="page-item disabled">
<a class="page-link" href="#">...</a>
</li>
';
} else {
$page_link .= '
<li class="page-item">
<a class="page-link" href="javascript:load_data(`' . $_POST["query"] . '`, ' . $page_array[$count] . ')">' . $page_array[$count] . '</a>
</li>
';
}
}
}
$pagination_html .= $previous_link . $page_link . $next_link;
$pagination_html .= '
</li>
</ul>
</nav>
</div>
';
$output = array(
'data' => $data,
'pagination' => $pagination_html,
'total_data' => $total_data
);
echo json_encode($output);
}