Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
admin.1 /
Delete
Unzip
Name
Size
Permission
Date
Action
ads.php
13.96
KB
-rw-r--r--
2025-10-17 23:08
auth.php
343
B
-rw-r--r--
2025-10-17 23:20
dashboard.php
8.71
KB
-rw-r--r--
2025-10-18 00:40
deposit_methods.php
12.36
KB
-rw-r--r--
2025-10-17 23:06
deposits.php
13.24
KB
-rw-r--r--
2025-10-18 00:56
dpin.php
6.16
KB
-rw-r--r--
2025-10-17 23:06
footer.php
565
B
-rw-r--r--
2025-10-17 23:05
header.php
13.06
KB
-rw-r--r--
2025-10-18 02:06
login.php
3.37
KB
-rw-r--r--
2025-10-17 23:09
login_as_user.php
1020
B
-rw-r--r--
2025-10-17 23:05
logout.php
88
B
-rw-r--r--
2025-10-17 23:08
plans.php
13.65
KB
-rw-r--r--
2025-10-17 23:06
referral_commissions.php
11.93
KB
-rw-r--r--
2025-10-18 00:13
team_commissions.php
6.66
KB
-rw-r--r--
2025-10-17 23:45
test_modals.php
4.44
KB
-rw-r--r--
2025-10-18 00:49
test_referral_commissions.php
2.87
KB
-rw-r--r--
2025-10-18 00:13
test_user_edit.php
4.96
KB
-rw-r--r--
2025-10-18 00:44
transactions.php
6.36
KB
-rw-r--r--
2025-10-17 23:08
users.php
13.55
KB
-rw-r--r--
2025-10-18 00:49
withdraw_methods.php
12.49
KB
-rw-r--r--
2025-10-17 23:08
withdraws.php
9.16
KB
-rw-r--r--
2025-10-17 23:39
Save
Rename
<?php $title = 'Withdraw Methods'; include 'header.php'; $error = ''; $success = ''; // Handle withdraw method actions if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['action'])) { try { switch ($_POST['action']) { case 'create': $name = trim($_POST['name']); $account_number = trim($_POST['account_number']); $holder_name = trim($_POST['holder_name']); $instructions = trim($_POST['instructions']); $stmt = $pdo->prepare("INSERT INTO methods (type, name, account_number, holder_name, instructions) VALUES ('withdraw', ?, ?, ?, ?)"); $stmt->execute([$name, $account_number, $holder_name, $instructions]); $success = 'Withdraw method created successfully.'; break; case 'update': $method_id = $_POST['method_id']; $name = trim($_POST['name']); $account_number = trim($_POST['account_number']); $holder_name = trim($_POST['holder_name']); $instructions = trim($_POST['instructions']); $stmt = $pdo->prepare("UPDATE methods SET name = ?, account_number = ?, holder_name = ?, instructions = ? WHERE id = ? AND type = 'withdraw'"); $stmt->execute([$name, $account_number, $holder_name, $instructions, $method_id]); $success = 'Withdraw method updated successfully.'; break; case 'delete': $method_id = $_POST['method_id']; $stmt = $pdo->prepare("DELETE FROM methods WHERE id = ? AND type = 'withdraw'"); $stmt->execute([$method_id]); $success = 'Withdraw method deleted successfully.'; break; } } catch (PDOException $e) { $error = 'Failed to perform action. Please try again.'; } } } // Get all withdraw methods try { $stmt = $pdo->prepare("SELECT * FROM methods WHERE type = 'withdraw' ORDER BY id DESC"); $stmt->execute(); $methods = $stmt->fetchAll(); } catch (PDOException $e) { $methods = []; $error = 'Failed to fetch withdraw methods.'; } ?> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">Withdraw Methods</h1> <button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#createModal">Add New Method</button> </div> <?php if ($error): ?> <div class="alert alert-danger"><?php echo htmlspecialchars($error); ?></div> <?php endif; ?> <?php if ($success): ?> <div class="alert alert-success"><?php echo htmlspecialchars($success); ?></div> <?php endif; ?> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <?php if (count($methods) > 0): ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Required Info</th> <th>Instructions</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($methods as $method): ?> <tr> <td><?php echo $method['id']; ?></td> <td><?php echo htmlspecialchars($method['name']); ?></td> <td><?php echo htmlspecialchars($method['account_number']); ?></td> <td><?php echo htmlspecialchars($method['holder_name']); ?></td> <td> <div class="btn-group" role="group"> <button type="button" class="btn btn-sm btn-outline-primary" data-bs-toggle="modal" data-bs-target="#editModal<?php echo $method['id']; ?>">Edit</button> <button type="button" class="btn btn-sm btn-outline-danger" data-bs-toggle="modal" data-bs-target="#deleteModal<?php echo $method['id']; ?>">Delete</button> </div> </td> </tr> <!-- Edit Modal --> <div class="modal fade" id="editModal<?php echo $method['id']; ?>" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <form method="POST"> <div class="modal-header"> <h5 class="modal-title">Edit Withdraw Method</h5> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <input type="hidden" name="method_id" value="<?php echo $method['id']; ?>"> <input type="hidden" name="action" value="update"> <div class="mb-3"> <label class="form-label">Method Name</label> <input type="text" class="form-control" name="name" value="<?php echo htmlspecialchars($method['name']); ?>" required> </div> <div class="mb-3"> <label class="form-label">Required Information Label</label> <input type="text" class="form-control" name="account_number" value="<?php echo htmlspecialchars($method['account_number']); ?>" required> </div> <div class="mb-3"> <label class="form-label">Placeholder Text</label> <input type="text" class="form-control" name="holder_name" value="<?php echo htmlspecialchars($method['holder_name']); ?>" required> </div> <div class="mb-3"> <label class="form-label">Instructions</label> <textarea class="form-control" name="instructions" rows="3" required><?php echo htmlspecialchars($method['instructions']); ?></textarea> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Save Changes</button> </div> </form> </div> </div> </div> <!-- Delete Modal --> <div class="modal fade" id="deleteModal<?php echo $method['id']; ?>" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <form method="POST"> <div class="modal-header"> <h5 class="modal-title">Delete Withdraw Method</h5> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <input type="hidden" name="method_id" value="<?php echo $method['id']; ?>"> <input type="hidden" name="action" value="delete"> <p>Are you sure you want to delete the withdraw method "<?php echo htmlspecialchars($method['name']); ?>"?</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button> <button type="submit" class="btn btn-danger">Delete Method</button> </div> </form> </div> </div> </div> <?php endforeach; ?> </tbody> </table> </div> <?php else: ?> <p>No withdraw methods found.</p> <?php endif; ?> </div> </div> </div> </div> <!-- Create Modal --> <div class="modal fade" id="createModal" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <form method="POST"> <div class="modal-header"> <h5 class="modal-title">Add New Withdraw Method</h5> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <input type="hidden" name="action" value="create"> <div class="mb-3"> <label class="form-label">Method Name</label> <input type="text" class="form-control" name="name" required> </div> <div class="mb-3"> <label class="form-label">Required Information Label</label> <input type="text" class="form-control" name="account_number" placeholder="e.g., Account Number, Easypaisa Number" required> </div> <div class="mb-3"> <label class="form-label">Placeholder Text</label> <input type="text" class="form-control" name="holder_name" placeholder="e.g., Enter your account number" required> </div> <div class="mb-3"> <label class="form-label">Instructions</label> <textarea class="form-control" name="instructions" rows="3" required></textarea> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Add Method</button> </div> </form> </div> </div> </div> <?php include 'footer.php'; ?>