MMCT TEAM
Server IP : 82.112.239.40  /  Your IP : 3.16.57.110
Web Server : LiteSpeed
System : Linux in-mum-web1676.main-hosting.eu 5.14.0-503.35.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 4 05:23:43 EDT 2025 x86_64
User : u641149403 ( 641149403)
PHP Version : 7.4.33
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF
Directory (0755) :  /home/u641149403/domains/cabz4you.com/public_html/admin/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u641149403/domains/cabz4you.com/public_html/admin/ajax_not_working_cities.php
<?php include 'lib/core.php';


//Show All cities
if($_SERVER['REQUEST_METHOD'] == "GET") {
    if (isset($_GET['show_cities'])) {
        $show = "SELECT * FROM not_working_cities";
        $result = $conn->query($show);

        if ($result->num_rows > 0) {
            while ($row = $result->fetch_assoc()) {
                $cities[] = $row;
            }
            echo json_encode($cities);
        }
    }
}


if($_SERVER['REQUEST_METHOD'] == "POST") {
    // Adding package cities

    if (isset($_POST['state_name'])) {
        // $city = $_POST['city_name'];
        $state = $_POST['state_name'];
            $sql = "INSERT INTO not_working_cities(city) VALUES('$state')";

            if ($conn->query($sql)) {
                echo "Success";
            }
            else {
                echo "Something Wrong";
            }
       
    }




    //Show Current City in Edit Modal

    if (isset($_POST['city_id'])) {
        $id = $_POST['city_id'];

        $query = "SELECT * FROM not_working_cities WHERE id = " . $id;

        $result = $conn->query($query);

        if ($result->num_rows > 0) {
            $current_city = $result->fetch_assoc();
            echo json_encode($current_city);
        }
    }

    //Updating package City in Modal
    if (isset($_POST['save_id'])) {
        $id = $_POST['save_id'];
        // $city = $_POST['save_city_name'];
        $state = $_POST['save_state_name'];
        $sql = "UPDATE not_working_cities SET city = '$state' WHERE id = $id";

        if ($conn->query($sql)) {
            echo "Success";
        } else {
            echo "Something Wrong";
        }

    }

    //Delete package cities

    if (isset($_POST['delete_id'])) {
        $id = $_POST['delete_id'];

        $query = "DELETE FROM not_working_cities WHERE id = " . $id;

        if ($conn->query($query)) {
            echo "Success";
        } else {
            echo "Something Wrong";
        }

    }
}

?>

MMCT - 2023