BLACKSITE
:
216.73.217.148
:
172.93.223.125 / www.geeteetravels.com
:
Linux ubuntu 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
:
/
home
/
geeteetravels
/
public_html
/
Upload File:
files >> /home/geeteetravels/public_html/populate_fleet.php
<?php require_once 'admin/config.php'; $fleet_data = [ // LUXURY [ 'car_name' => 'Mercedes-Maybach S-Class', 'category' => 'luxury', 'capacity' => '4 Seats', 'seats' => '4', 'bags' => '3 Large Bags', 'ac_type' => '4-Zone AC', 'description' => 'The pinnacle of peak luxury, the Maybach S-Class offers an unparalleled chauffeur experience with first-class rear seats and exceptional ride quality.', 'image_path' => 'images/maybach.png', 'is_featured' => 1 ], [ 'car_name' => 'Mercedes-Benz S-Class', 'category' => 'luxury', 'capacity' => '4 Seats', 'seats' => '4', 'bags' => '3 Bags', 'ac_type' => 'Climate Control', 'description' => "Experience the world's finest sedan, blending high-tech innovation with peerless comfort.", 'image_path' => 'images/mercedes-s.jpeg', 'is_featured' => 0 ], [ 'car_name' => 'Mercedes-Benz GLS 450', 'category' => 'luxury', 'capacity' => '6 Seats', 'seats' => '6', 'bags' => '4 Bags', 'ac_type' => 'AWD Suspension', 'description' => 'The S-Class of SUVs, offering supreme space and luxury across all three rows.', 'image_path' => 'images/mercedes-gls.png', 'is_featured' => 0 ], [ 'car_name' => 'Audi A6', 'category' => 'luxury', 'capacity' => '4 Seats', 'seats' => '4', 'bags' => '3 Bags', 'ac_type' => 'Dual AC', 'description' => 'Clean design and advanced technology for a smooth, sophisticated journey.', 'image_path' => 'images/audi_a6.svg', 'is_featured' => 0 ], // SUV / MPV [ 'car_name' => 'Toyota Vellfire', 'category' => 'suv', 'capacity' => '6 Seats', 'seats' => '6', 'bags' => '4 Bags', 'ac_type' => 'VIP Climate', 'description' => 'Luxury private lounge on wheels with ottoman seats, offering unparalleled prestige.', 'image_path' => 'images/VELLFIRE.svg', 'is_featured' => 1 ], [ 'car_name' => 'Toyota Innova Hycross', 'category' => 'suv', 'capacity' => '7 Seats', 'seats' => '7', 'bags' => '4 Bags', 'ac_type' => 'Hybrid AC', 'description' => 'The next generation of travel, blending hybrid technology with premium interior comfort.', 'image_path' => 'images/HYCROSS1.svg', 'is_featured' => 0 ], [ 'car_name' => 'Toyota Fortuner', 'category' => 'suv', 'capacity' => '6 Seats', 'seats' => '6', 'bags' => '3 Bags', 'ac_type' => 'Powerful AC', 'description' => 'Tough, reliable and prestigious. The Fortuner is perfect for any terrain or corporate visit.', 'image_path' => 'images/toyota-fortuner.svg', 'is_featured' => 0 ], // SEDAN [ 'car_name' => 'Honda City', 'category' => 'sedan', 'capacity' => '4 Seats', 'seats' => '4', 'bags' => '2 Bags', 'ac_type' => 'AC', 'description' => 'A timeless classic for city transfers and executive travel with refined interiors.', 'image_path' => 'images/honda-city.svg', 'is_featured' => 0 ], // VAN [ 'car_name' => 'Force Urbania', 'category' => 'van', 'capacity' => '13-17 Seats', 'seats' => '17', 'bags' => '10 Bags', 'ac_type' => 'Premium AC', 'description' => 'International styling with best-in-class comfort and safety for elite group travel.', 'image_path' => 'images/force-urbania.png', 'is_featured' => 1 ], [ 'car_name' => 'Force Traveller', 'category' => 'van', 'capacity' => '13-26 Seats', 'seats' => '26', 'bags' => '15 Bags', 'ac_type' => 'Unified AC', 'description' => 'Available in multiple configurations for group travels and airport transfers.', 'image_path' => 'images/force-traveller.svg', 'is_featured' => 0 ], // BUS [ 'car_name' => 'Luxury Volvo Coach', 'category' => 'bus', 'capacity' => '45+ Seats', 'seats' => '45', 'bags' => '40 Bags', 'ac_type' => 'Centralized', 'description' => 'The ultimate choice for long-distance corporate trips and wedding party transport.', 'image_path' => 'images/luxury-coach.svg', 'is_featured' => 0 ] ]; try { // Clear existing data to avoid duplicates for this migration $pdo->exec("TRUNCATE TABLE fleet"); $stmt = $pdo->prepare("INSERT INTO fleet (car_name, category, capacity, seats, bags, ac_type, description, image_path, is_featured) VALUES (:car_name, :category, :capacity, :seats, :bags, :ac_type, :description, :image_path, :is_featured)"); foreach ($fleet_data as $car) { $stmt->execute($car); } echo "Fleet data successfully inserted into the database!"; } catch (PDOException $e) { echo "Error inserting fleet data: " . $e->getMessage(); } ?>