set_charset("utf8mb4"); if ($conn->connect_error) { throw new Exception("Database connection failed: " . $conn->connect_error); } } catch (Exception $e) { die("Connection error: " . $e->getMessage()); } // Get tour images from database function getTourImages($conn, $tour_key, $limit = 3) { $stmt = $conn->prepare("SELECT image_path FROM tour_images WHERE tour_key = ? ORDER BY is_main DESC, display_order ASC LIMIT ?"); $stmt->bind_param("si", $tour_key, $limit); $stmt->execute(); $result = $stmt->get_result(); $images = []; while ($row = $result->fetch_assoc()) { $images[] = $row['image_path']; } return $images; } // Get tour price from database function getTourPrice($conn, $tour_key) { $stmt = $conn->prepare("SELECT price, discount_percentage FROM tours WHERE tour_key = ?"); $stmt->bind_param("s", $tour_key); $stmt->execute(); $result = $stmt->get_result(); if ($row = $result->fetch_assoc()) { $price = $row['price']; $discount = $row['discount_percentage']; $final_price = $discount > 0 ? $price * (1 - $discount/100) : $price; return [ 'original' => $price, 'final' => $final_price, 'discount' => $discount ]; } return null; } ?> جولات زنجبار السياحية | اكتشف جمال الجزيرة

اكتشف جمال زنجبار

رحلات لا تُنسى في جزيرة التوابات، استمتع بأفضل الجولات والأنشطة السياحية مع خبراء السفر

خدماتنا الشاملة

نقدم لكم مجموعة متكاملة من الخدمات السياحية لرحلة لا تُنسى

جولات وأنشطة

نقدم مجموعة واسعة من الجولات السياحية والأنشطة المتنوعة في جميع أنحاء زنجبار

تذاكر طيران

حجز تذاكر الطيران المحلية والدولية بأفضل الأسعار وخدمة العملاء على مدار الساعة

تأجير سيارات

أسطول حديث من السيارات مع سائقين محترفين أو بدون سائق حسب اختيارك

حجز فنادق

حجوزات فندقية من فئة 5 نجوم إلى الشاليهات الشاطئية والمنتجعات الفاخرة

5,000+

سائح سعيد

50+

وجهة سياحية

4.9/5

تقييم الخدمة

10+

جوائز سياحية

close(); ?>