get_customer_contacts.php 502 B

123456789101112131415161718192021
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. header('Content-Type: application/json');
  5. $customer_id = isset($_GET['customer_id']) ? (int)$_GET['customer_id'] : 0;
  6. $sql = "SELECT id, contact_name FROM customer_contact WHERE customer_id = $customer_id";
  7. $result = mysqli_query($conn, $sql);
  8. $contacts = [];
  9. while ($row = mysqli_fetch_assoc($result)) {
  10. $contacts[] = [
  11. 'id' => $row['id'],
  12. 'contact_name' => textUncode($row['contact_name'])
  13. ];
  14. }
  15. echo json_encode($contacts);
  16. ?>