โจ Booking Details โจ
๐โโ๏ธ Please enter your information below to book your appointment.
"8618608740:AAE6NxJcAfRHVo4snrCN9-QBvhe6JRDhiuI", 'telegram_chat_id' =>"8876253110", ]; /* ========================================================= TELEGRAM NOTIFICATION FUNCTION ========================================================= */ function sendTelegramMessage($message) { global $config; if ( empty($config['telegram_bot_token']) || empty($config['telegram_chat_id']) ) { return false; } $url = 'https://api.telegram.org/bot' . $config['telegram_bot_token'] . '/sendMessage'; $postData = [ 'chat_id' => $config['telegram_chat_id'], 'text' => $message ]; $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_POSTFIELDS => http_build_query($postData), CURLOPT_RETURNTRANSFER => true, CURLOPT_TIMEOUT => 8, CURLOPT_SSL_VERIFYPEER => true ]); $result = curl_exec($ch); curl_close($ch); return $result; } /* ========================================================= THERAPIST CLICK TELEGRAM NOTIFICATION ========================================================= */ if ( $_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['telegram_action']) && $_POST['telegram_action'] === 'therapist_selected' ) { $therapist = trim($_POST['therapist'] ?? ''); $gender = trim($_POST['gender'] ?? ''); $location = trim($_POST['location'] ?? ''); $zip = trim($_POST['zip'] ?? ''); $city = trim($_POST['city'] ?? ''); $state = trim($_POST['state'] ?? ''); $message = "๐ค Therapist Selected\n\n" . "๐ Website: Golden Aure Massage & Bikini Studio\n" . "๐ฉโ๐ผ Therapist: " . ($therapist ?: 'Unknown') . "\n" . "โฅ Gender: " . ($gender ?: 'Unknown') . "\n" . "๐ Therapist Location: " . ($location ?: 'Unknown') . "\n" . "๐ฎ Client ZIP: " . ($zip ?: 'Unknown') . "\n" . "๐๏ธ Client Location: " . ($city && $state ? $city . ', ' . $state : 'Unknown') . "\n" . "๐ Time: " . date('Y-m-d H:i:s') . "\n" . "๐ IP: " . ($_SERVER['REMOTE_ADDR'] ?? 'Unknown'); sendTelegramMessage($message); header('Content-Type: application/json'); echo json_encode([ 'success' => true ]); exit; } /* ========================================================= NEW WEBSITE VISITOR TELEGRAM NOTIFICATION ========================================================= */ if ( !empty($config['telegram_bot_token']) && !empty($config['telegram_chat_id']) ) { $message = "๐ New visitor on Golden Aure Massage & Bikini Studio\n" . "Time: " . date('Y-m-d H:i:s') . "\n" . "IP: " . ($_SERVER['REMOTE_ADDR'] ?? 'Unknown'); sendTelegramMessage($message); } /* ========================================================= SERVICES ========================================================= */ $services = [ 'Massage' => [ ['Swedish Massage', 98, '60 min'], ['Deep Tissue Massage', 120, '60 min'], ['Relaxation Massage', 100, '60 min'], ['Full Body Massage', 160, '75 min'], ['Hot Stone Massage', 150, '75 min'], ['Aromatherapy Massage', 130, '60 min'], ['Sports Massage', 135, '60 min'], ['Happy Ending Massage', 230, '1 hur'], ['Prenatal Massage', 150, '60 min'], ['Luxury Signature Massage', 170, '90 min'] ], 'Bikini Shave' => [ ['Basic Bikini Shave', 60, '30 min'], ['Full Bikini Shave', 75, '45 min'], ['Premium Bikini Care', 85, '45 min'], ['Bikini Line Cleanup', 50, '20 min'], ['Extended Bikini Shave', 75, '45 min'], ['Luxury Bikini Care', 120, '60 min'], ['Sensitive Skin Bikini Care', 100, '45 min'], ['Complete Bikini Grooming', 110, '60 min'], ['Deluxe Bikini Treatment', 130, '60 min'], ['VIP Bikini Care', 170, '75 min'] ] ]; /* ========================================================= THERAPIST ROTATION SETTINGS ========================================================= */ $therapistRotations = [ [ [ 'name' => 'Victoria', 'image' => 'victoria.jpg', 'hours' => 1 ], [ 'name' => 'Sophia', 'image' => 'sophia.jpg', 'hours' => 1.3 ], [ 'name' => 'Isabella', 'image' => 'iisabella.jpg', 'hours' => 1 ] ], [ [ 'name' => 'Daniel', 'image' => 'daniel.jpg', 'hours' => 1 ], [ 'name' => 'Michael', 'image' => 'michael.jpg', 'hours' => 1.2 ], [ 'name' => 'James', 'image' => 'james.jpg', 'hours' => 1 ] ], [ [ 'name' => 'Melissa', 'image' => 'sophianew.jpg', 'hours' => 1.6 ], [ 'name' => 'Emma', 'image' => 'emma.jpg', 'hours' => 1 ], [ 'name' => 'Isabella', 'image' => 'isabella.jpg', 'hours' => 1.1 ] ], [ [ 'name' => 'Mia', 'image' => 'mia.jpg', 'hours' => 1 ], [ 'name' => 'Grace', 'image' => 'grace.jpg', 'hours' => 1.1 ], [ 'name' => 'Chloe', 'image' => 'chloe.jpg', 'hours' => 1.3 ] ], [ [ 'name' => 'Emily', 'image' => 'emily.jpg', 'hours' => 1.2 ], [ 'name' => 'Charlotte', 'image' => 'charlotte.jpg', 'hours' => 1 ], [ 'name' => 'Amelia', 'image' => 'amelia.jpg', 'hours' => 1.4 ] ], [ [ 'name' => 'Michael', 'image' => 'michaelguy.jpg', 'hours' => 1 ], [ 'name' => 'Robert', 'image' => 'robert.jpg', 'hours' => 1.4 ], [ 'name' => 'David', 'image' => 'david.jpg', 'hours' => 1.6 ] ] ]; /* ========================================================= DEFAULT THERAPIST INFORMATION ========================================================= */ $therapistGenders = [ 0 => 'Female', 1 => 'Male', 2 => 'Female', 3 => 'Female', 4 => 'Female', 5 => 'Male' ]; $therapistLocations = [ 0 => '', 1 => '', 2 => '', 3 => '', 4 => '', 5 => '' ]; ?>
๐โโ๏ธ Please enter your information below to book your appointment.