X7ROOT File Manager
Current Path:
/home/u126090504/domains/sketkaranjia.com/public_html
home
/
u126090504
/
domains
/
sketkaranjia.com
/
public_html
/
📁
..
📄
.htaccess
(1.12 KB)
📄
Antiraging-Cell.php
(2.73 KB)
📄
about-us.php
(8.49 KB)
📄
academic-calendar.php
(2.73 KB)
📄
achievements.php
(9.56 KB)
📄
achievers.php
(15.19 KB)
📁
admin
📄
administrative-head.php
(5.41 KB)
📄
admission-process.php
(13.74 KB)
📄
admission.php
(12.71 KB)
📄
admission_submit.php
(3.38 KB)
📄
album.php
(890 B)
📄
assessment-policy.php
(12.11 KB)
📄
branches.php
(3.13 KB)
📄
cbse-curriculum-summary.php
(8.79 KB)
📄
computer-courses.php
(22.83 KB)
📄
config.php
(1.25 KB)
📄
contact-us.php
(14.62 KB)
📄
contactdb.php
(796 B)
📄
courses.php
(10.44 KB)
📁
css
📄
downloads.php
(2.9 KB)
📄
error.log
(14.6 KB)
📄
facilities.php
(6.39 KB)
📄
faculty.php
(10.27 KB)
📄
fee-structure.php
(7.97 KB)
📁
fonts
📄
footer.php
(18.14 KB)
📄
franchise.php
(2.09 KB)
📄
gallery.php
(3.05 KB)
📄
grievance-form.php
(16.54 KB)
📄
header.php
(22.5 KB)
📄
homework.php
(9.64 KB)
📁
images
📄
index.php
(50.83 KB)
📄
infrastructure-details.php
(4.41 KB)
📁
js
📁
lib
📄
library.php
(7.04 KB)
📄
managing-committee.php
(3.34 KB)
📄
media-corner.php
(2.48 KB)
📄
non-academic-achievers.php
(14.65 KB)
📄
payment.php
(21.87 KB)
📄
payment_submit.php
(15.1 KB)
📄
payment_verify.php
(2.31 KB)
📄
placement.php
(8.33 KB)
📄
principal's-message.php
(11.85 KB)
📄
public-disclosure.php
(3.38 KB)
📁
qrcodes
📁
revolution
📄
scope.php
(14.14 KB)
📄
search_videos.php
(1.76 KB)
📄
secretary-message.php
(6.48 KB)
📁
sket
📄
skiet.zip
(137.75 MB)
📄
subjects-offered.php
(14.79 KB)
📄
submit-grievance.php
(3.88 KB)
📄
thank-you.php
(1.28 KB)
📁
uploads
📄
videos.php
(6.87 KB)
📁
xavint
Editing: payment_verify.php
<?php // Simple confirmation page with better UI $tx = isset($_GET['ref']) ? trim($_GET['ref']) : (isset($_POST['transaction_id']) ? trim($_POST['transaction_id']) : ''); $id = isset($_GET['id']) ? intval($_GET['id']) : (isset($_POST['payment_id']) ? intval($_POST['payment_id']) : 0); ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Payment Submitted</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Icons --> <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet"> <style> body { background: linear-gradient(135deg, #f8f9fa, #e9f5ff); font-family: 'Segoe UI', sans-serif; } .card { border-radius: 20px; overflow: hidden; animation: fadeIn 0.6s ease-in-out; } .icon-success { font-size: 3rem; color: #28a745; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .btn-custom { border-radius: 30px; padding: 10px 20px; } </style> </head> <body> <div class="container py-5"> <div class="col-md-6 mx-auto"> <div class="card shadow-lg border-0 p-4 text-center"> <div class="mb-3"> <i class="bi bi-check-circle-fill icon-success"></i> </div> <h3 class="text-success fw-bold">Payment Successful!</h3> <p class="text-muted">Your transaction has been submitted successfully.</p> <?php if ($tx): ?> <p><span class="fw-semibold">Reference:</span> <?= htmlspecialchars($tx) ?></p> <?php endif; ?> <?php if ($id): ?> <p><span class="fw-semibold">Payment ID:</span> <?= intval($id) ?></p> <?php endif; ?> <div class="mt-4 d-flex justify-content-center gap-3"> <a class="btn btn-primary btn-custom" href="index.php"> <i class="bi bi-house-door-fill"></i> Go Home </a> <a class="btn btn-outline-success btn-custom" href="contact-us.php"> <i class="bi bi-headset"></i> Contact Support </a> </div> </div> </div> </div> </body> </html>
Upload File
Create Folder