PATH: //home/hwyuvbry/pelanggan.waroenkhoki123.web.id/function
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 api_result.log
↓
X
📁 asset/
X
📄 checker.php
↓
X
📄 error_log
↓
X
📄 get-referral.php
↓
X
📄 get-referral.php#
↓
X
📄 get-referral.php#8999
↓
X
📄 last_deposit.php
↓
X
📄 last_withdraw.php
↓
X
📄 memo-store.php
↓
X
📄 profile_update.php
↓
X
📄 proses_bet.php
↓
X
📄 proses_daftar.php#off dulu
↓
X
📄 proses_depo_otomatis.php
↓
X
📄 proses_depo_otomatis.php#
↓
X
📄 proses_deposit.php
↓
X
📄 proses_deposit.php#
↓
X
📄 proses_login.php
↓
X
📄 proses_pengaturan.php
↓
X
📄 proses_withdraw.php
↓
X
📄 proses_withdraw.php#
↓
X
📄 qris_log.txt
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: last_withdraw.php
<?php include '../db/koneksi.php'; session_start(); header('Content-Type: application/json'); $extplayer = $_SESSION['extplayer'] ?? ''; if (empty($extplayer)) { echo json_encode(['success' => false, 'message' => 'Session tidak valid']); exit; } $q = mysqli_query($koneksi, " SELECT status, created_at, bank_asal, jumlah FROM tb_withdraw WHERE extplayer = '$extplayer' ORDER BY id DESC LIMIT 7 "); if (!$q) { echo json_encode(['success' => false, 'message' => 'Query error: ' . mysqli_error($koneksi)]); exit; } $data = []; while ($row = mysqli_fetch_assoc($q)) { $data[] = $row; } echo json_encode(['success' => true, 'data' => $data]); exit; ?>
SIMPAN PERUBAHAN