Shipping Policy
Our Guidelines for Delivering Aid and Resources
prepare("SELECT * FROM site_config WHERE id = 1 LIMIT 1");
$stmt->execute();
$site = $stmt->fetch(PDO::FETCH_ASSOC);
// Get active shipping policy sections
$stmt = $db->prepare("SELECT * FROM shipping_policy_content WHERE status = 'active' ORDER BY sort_order ASC");
$stmt->execute();
$sections = $stmt->fetchAll(PDO::FETCH_ASSOC);
} catch (PDOException $e) {
logError("Error fetching shipping policy content: " . $e->getMessage());
$sections = [];
$site = null;
}
?>
Our Guidelines for Delivering Aid and Resources
Shipping Policy