|
@@ -14,19 +14,19 @@ if ($act == "save") {
|
|
|
$IPAddress = textEncode($_POST['IPAddress']);
|
|
|
|
|
|
if ($isedit) {
|
|
|
- $sql = "SELECT * FROM allowIp WHERE id = ?";
|
|
|
+ $sql = "SELECT * FROM allowip WHERE id = ?";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("i", $id);
|
|
|
$stmt->execute();
|
|
|
$result = $stmt->get_result();
|
|
|
|
|
|
if ($result->num_rows > 0) {
|
|
|
- $sql = "UPDATE allowIp SET IPAddress = ? WHERE id = ?";
|
|
|
+ $sql = "UPDATE allowip SET IPAddress = ? WHERE id = ?";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("si", $IPAddress, $id);
|
|
|
$stmt->execute();
|
|
|
} else {
|
|
|
- $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
|
|
|
+ $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("s", $IPAddress);
|
|
|
$stmt->execute();
|
|
@@ -38,7 +38,7 @@ if ($act == "save") {
|
|
|
header("Location: ?keys=$keys&Ord=$ord&Page=$page");
|
|
|
exit;
|
|
|
} else {
|
|
|
- $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
|
|
|
+ $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("s", $IPAddress);
|
|
|
$stmt->execute();
|
|
@@ -55,7 +55,7 @@ if ($act == "postchk") {
|
|
|
|
|
|
if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
|
|
|
$ids = array_map('intval', $_POST['chkbox']);
|
|
|
- $sql = "DELETE FROM allowIp WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
|
|
|
+ $sql = "DELETE FROM allowip WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
|
|
|
$types = str_repeat('i', count($ids));
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param($types, ...$ids);
|
|
@@ -88,7 +88,7 @@ if ($act == "add" || $act == "edit") {
|
|
|
|
|
|
if ($id != "" && is_numeric($id)) {
|
|
|
$isedit = true;
|
|
|
- $sql = "SELECT * FROM allowIp WHERE id = ?";
|
|
|
+ $sql = "SELECT * FROM allowip WHERE id = ?";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("i", $id);
|
|
|
$stmt->execute();
|
|
@@ -133,7 +133,7 @@ $ord = $_GET['Ord'] ?? '';
|
|
|
$page = $_GET['Page'] ?? '';
|
|
|
|
|
|
// Get total count first
|
|
|
-$sql = "SELECT COUNT(*) as total FROM allowIp WHERE IPAddress LIKE ?";
|
|
|
+$sql = "SELECT COUNT(*) as total FROM allowip WHERE IPAddress LIKE ?";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$search = '%' . $keyscode . '%';
|
|
|
$stmt->bind_param("s", $search);
|
|
@@ -155,7 +155,7 @@ if ($page > $total_pages) $page = $total_pages;
|
|
|
$start = ($page - 1) * $records_per_page;
|
|
|
|
|
|
// Get paginated results
|
|
|
-$sql = "SELECT * FROM allowIp WHERE IPAddress LIKE ? ORDER BY id DESC LIMIT ?, ?";
|
|
|
+$sql = "SELECT * FROM allowip WHERE IPAddress LIKE ? ORDER BY id DESC LIMIT ?, ?";
|
|
|
$stmt = $conn->prepare($sql);
|
|
|
$stmt->bind_param("sii", $search, $start, $records_per_page);
|
|
|
$stmt->execute();
|