X7ROOT File Manager
Current Path:
/home/u126090504/domains/oceanicabeachresort.com/public_html/admin
home
/
u126090504
/
domains
/
oceanicabeachresort.com
/
public_html
/
admin
/
📁
..
📁
assets
📄
banners.php
(9.78 KB)
📄
booking-dashboard.php
(4.93 KB)
📄
booking_status_update.php
(6.14 KB)
📄
booking_view.php
(4.04 KB)
📄
branding_settings.php
(5.93 KB)
📄
change_password.php
(3.01 KB)
📄
contacts.php
(3.83 KB)
📄
dashboard.php
(5.64 KB)
📁
dompdf
📄
downloads.php
(4.91 KB)
📄
forgot_password.php
(5.76 KB)
📄
gallery.php
(3.08 KB)
📁
img
📁
includes
📄
index.php
(82 B)
📁
invoices
📄
login.php
(13.47 KB)
📄
logo.png
(19.29 KB)
📄
logout.php
(102 B)
📄
manage_albums.php
(10.82 KB)
📄
manage_media.php
(11.77 KB)
📄
manage_photos.php
(6.35 KB)
📄
manage_videos.php
(18.38 KB)
📄
new_password.php
(3.9 KB)
📄
notice.php
(15.52 KB)
📄
notice_error.log
(38.45 KB)
📄
notices.php
(8.24 KB)
📄
payments.php
(14.96 KB)
📄
pdf_bill_template.php
(30.69 KB)
📁
phpmailer
📄
popup.php
(14.07 KB)
📄
reset_password.php
(2.27 KB)
📄
secure_session.php
(1000 B)
📄
settings.php
(8.34 KB)
📄
test.php
(239 B)
📄
test_pdf.php
(1.58 KB)
📄
testimonials.php
(15.15 KB)
📁
tmp
📄
update_status.php
(1.66 KB)
📄
upi_settings.php
(1.52 KB)
Editing: upi_settings.php
<?php include '../kiit/config.php'; // Update UPI ID if ($_SERVER['REQUEST_METHOD'] == 'POST') { $upi_id = $_POST['upi_id']; $conn->query("UPDATE site_settings SET upi_id='$upi_id' WHERE id=1"); echo "<p style='color:green;text-align:center;'>UPI ID Updated Successfully!</p>"; } // Get current UPI ID $result = $conn->query("SELECT * FROM site_settings WHERE id=1"); $row = $result->fetch_assoc(); $current_upi = $row['upi_id']; ?> <!DOCTYPE html> <html> <head> <title>UPI Settings</title> <style> body { font-family: Arial, sans-serif; } .form-box { width: 400px; margin: 50px auto; padding: 20px; border: 1px solid #ccc; border-radius: 8px; background: #f9f9f9; } input[type="text"] { width: 100%; padding: 8px; margin: 10px 0; } button { background: green; color: white; border: none; padding: 10px; width: 100%; border-radius: 5px; cursor: pointer; } button:hover { background: darkgreen; } </style> </head> <body> <div class="form-box"> <h3>Update UPI ID</h3> <form method="POST"> <label>UPI ID</label> <input type="text" name="upi_id" value="<?= $current_upi ?>" required> <button type="submit">Save</button> </form> </div> </body> </html>
Upload File
Create Folder