PHP WebShell
Текущая директория: /var/www/bitcardoApp/models/crypto
Просмотр файла: send_crypto_success.php
<?php
session_start();
$txid = isset($_GET['txid']) ? htmlspecialchars($_GET['txid']) : '';
$amount = isset($_GET['amount']) ? htmlspecialchars($_GET['amount']) : '';
$coin = isset($_GET['coin']) ? htmlspecialchars($_GET['coin']) : '';
$receiver = isset($_GET['receiver']) ? htmlspecialchars($_GET['receiver']) : '';
?>
<!DOCTYPE html>
<html>
<head>
<title>Transaction Successful</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container py-5">
<div class="alert alert-success text-center">
<h2>Transaction Successful</h2>
<p><strong>Amount:</strong> <?= $amount ?> <?= $coin ?></p>
<p><strong>To:</strong> <?= $receiver ?></p>
<?php if($txid): ?>
<p><strong>Transaction ID:</strong> <?= $txid ?></p>
<?php endif; ?>
<a href="send_crypto.php" class="btn btn-primary mt-3">Send Another</a>
</div>
</div>
</body>
</html>
Выполнить команду
Для локальной разработки. Не используйте в интернете!