X7ROOT File Manager
Current Path:
/home/u126090504/domains/oceanicabeachresort.com/public_html
home
/
u126090504
/
domains
/
oceanicabeachresort.com
/
public_html
/
📁
..
📄
.htaccess
(0 B)
📁
Version
📄
about.php
(4.19 KB)
📁
admin
📁
assets
📄
booking.php
(4.55 KB)
📄
booking_details.php
(4.43 KB)
📄
booking_process.php
(1.12 KB)
📄
config.php
(914 B)
📄
contact.php
(14.48 KB)
📄
contactdb.php
(796 B)
📄
footer.php
(13.26 KB)
📄
gallery.php
(2.82 KB)
📄
header.php
(19.3 KB)
📁
images
📄
index.php
(2.27 KB)
📄
indexx.php
(75.25 KB)
📁
lib
📄
oce.zip
(106.17 MB)
📄
payment.php
(6.79 KB)
📄
payment_submit.php
(15.1 KB)
📄
payment_verify.php
(2.31 KB)
📁
qrcodes
📄
room-service.php
(8.98 KB)
📄
search_videos.php
(1.76 KB)
📄
services.php
(14.04 KB)
📄
success.php
(2.06 KB)
📄
test_mailer.php
(372 B)
📄
thank-you.php
(1.28 KB)
📁
uploads
📄
videos.php
(6.87 KB)
Editing: success.php
<?php include 'config.php'; $bid = $_GET['bid'] ?? ''; if($bid==''){ die('Invalid'); } $data = mysqli_fetch_assoc( mysqli_query($conn,"SELECT * FROM bookings WHERE booking_id='$bid'") ); if(!$data){ die('Booking not found'); } ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Booking Confirmed</title> <style> body{margin:0;background:#f4f6f9;font-family:Segoe UI,Arial} .container{max-width:700px;margin:40px auto;padding:15px} .card{ background:#fff; border-radius:18px; box-shadow:0 12px 35px rgba(0,0,0,.08); padding:35px; text-align:center; } .icon{ width:90px;height:90px; background:#e8f6ee; color:#1fa463; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:40px; margin:0 auto 20px; } h2{margin:10px 0} p{color:#555} .summary{ background:#f8fafc; border-radius:14px; padding:20px; margin:25px 0; text-align:left; } .summary p{margin:8px 0} .btn{ display:inline-block; margin-top:20px; padding:14px 26px; background:#d4a017; color:#000; border-radius:14px; text-decoration:none; font-weight:600; } </style> </head> <body> <div class="container"> <div class="card"> <div class="icon">✓</div> <h2>Thank You for Your Booking!</h2> <p>Your booking request has been received successfully.</p> <div class="summary"> <p><b>Booking ID:</b> <?= $data['booking_id'] ?></p> <p><b>Room:</b> <?= $data['room_type'] ?></p> <p><b>Check-In:</b> <?= date("d-m-Y",strtotime($data['checkin_date'])) ?></p> <p><b>Check-Out:</b> <?= date("d-m-Y",strtotime($data['checkout_date'])) ?></p> <p><b>Adults:</b> <?= $data['adults'] ?> | <b>Children:</b> <?= $data['children'] ?></p> <p><b>Amount:</b> ₹<?= number_format($data['amount'],2) ?></p> </div> <p>We will verify your payment and confirm shortly.</p> <a class="btn" href="index.php">Back to Home</a> </div> </div> </body> </html>
Upload File
Create Folder