prepare($sql); $stmt->bind_param("ii", $_SESSION['employee_id'], $id); $stmt->execute(); $result = $stmt->get_result(); if ($row = $result->fetch_assoc()) { $customer = [ 'cs_company' => textUncode($row['cs_company']), 'cs_address' => textUncode($row['cs_address']), 'cs_code' => textUncode($row['cs_code']), 'cs_deal' => textUncode($row['cs_deal']), 'cs_addtime' => $row['cs_addtime'], 'cs_belongclient' => $row['cs_belongclient'], 'cs_updatetime' => $row['cs_updatetime'], 'cs_from' => $row['cs_from'], 'cs_country' => $row['cs_country'], 'cs_type' => $row['cs_type'], 'cs_note' => htmlUnCode($row['cs_note']), 'cs_claimFrom' => $row['cs_claimFrom'], 'allowedit' => $row['allowedit'] ]; // Fetch all contact records for this customer $contactSql = "SELECT cc.* FROM customer_contact cc WHERE cc.customer_id = ?"; $contactStmt = $conn->prepare($contactSql); $contactStmt->bind_param("i", $id); $contactStmt->execute(); $contactResult = $contactStmt->get_result(); $contacts = []; while ($contactRow = $contactResult->fetch_assoc()) { $contact = [ 'id' => $contactRow['id'], 'contact_name' => textUncode($contactRow['contact_name']), 'created_at' => $contactRow['created_at'], 'updated_at' => $contactRow['updated_at'] ]; // Process each contact method type (up to 3 entries each) $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba']; foreach ($methodTypes as $type) { for ($i = 1; $i <= 3; $i++) { $fieldBase = $type . '_' . $i; $contact[$fieldBase] = textUncode($contactRow[$fieldBase]); if ($type == 'tel' || $type == 'whatsapp') { $contact[$fieldBase . '_format'] = textUncode($contactRow[$fieldBase . '_format']); } $contact[$fieldBase . '_bu'] = textUncode($contactRow[$fieldBase . '_bu']); } } $contacts[] = $contact; } } else { echo ""; exit; } } else { echo ""; header("Location: $hrefstr"); exit; } ?>