Uname:
Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software:
Apache
PHP version:
8.3.32 [ PHP INFO ] PHP os:
Linux
Server Ip:
163.227.92.254
Your Ip:
216.73.217.24
User:
gutlooks (1003) | Group:
gutlooks (1005)
Safe Mode:
OFF
Disable Function:
exec,passthru,shell_exec,system
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Successful</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f9fafb;
color: #333;
}
.container {
max-width: 600px;
margin: 100px auto;
padding: 20px;
text-align: center;
background: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.success-icon {
font-size: 60px;
color: #4caf50;
margin-bottom: 20px;
}
h1 {
font-size: 28px;
font-weight: 600;
color: #4caf50;
margin-bottom: 10px;
}
p {
font-size: 16px;
line-height: 1.6;
color: #555;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 12px 20px;
font-size: 16px;
color: #fff;
text-decoration: none;
background: #4caf50;
border-radius: 5px;
transition: background 0.3s;
}
.btn:hover {
background: #45a049;
}
.details {
font-size: 14px;
color: #777;
margin-top: 15px;
border-top: 1px solid #eee;
padding-top: 15px;
}
</style>
</head>
<body>
<div id="error-container"></div>
<div class="container">
<div class="success-icon">✔</div>
<h1>Payment Successful!</h1>
<p>Thank you for your payment. Your transaction was completed successfully.</p>
</div>
</body>
</html>
<?php $status = "Success";
echo "<script>
try {
// Safely encode the PHP variable into JavaScript
let status = " . json_encode($status) . ";
// Call the JavaScript function with the variable
HTMLOUT.processHTML(status);
} catch (error) {
console.error('An error occurred:', error);
const errorContainer = document.getElementById('error-container');
if (errorContainer) {
errorContainer.textContent = 'An error occurred: ' + error.message;
} else {
alert('An error occurred: ' + error.message);
}
}
</script>";
?>