PATH: /home/hwyuvbry/dear.waroenkhoki123.web.id/topadmin
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📄 Saldorespon.json
↓
X
📄 anggota.php
↓
X
📁 assets/
X
📄 bonus.php
↓
X
📄 bonus_floating.php
↓
X
📄 bukti_jp.php
↓
X
📄 bukti_jp.php#
↓
X
📄 check_data_changes.php
↓
X
📄 dasbor.php
↓
X
📄 deposit.php
↓
X
📄 error_log
↓
X
📄 footer.php
↓
X
📄 ikon_mengambang.php
↓
X
📄 import_games.php
↓
X
📄 index.php
↓
X
📄 keluar.php
↓
X
📄 kyc.php
↓
X
📄 masuk.php
↓
X
📄 masuk.php##
↓
X
📄 masuk_step_1.php
↓
X
📄 navbar.php
↓
X
📄 pemberitahuan.php
↓
X
📄 pengaturan.php
↓
X
📄 pengaturan.php#
↓
X
📄 popup.php
↓
X
📄 profil.php
↓
X
📄 promosi.php
↓
X
📄 refferal.php
↓
X
📄 rekening.php
↓
X
📄 saldo.php
↓
X
📄 saldobckup.php
↓
X
📄 sidebar.php
↓
X
📄 staff.php
↓
X
📄 tambah_anggota.php
↓
X
📄 tambah_bonus.php
↓
X
📄 tambah_bukti_jp.php
↓
X
📄 tambah_ikon_mengambang.php
↓
X
📄 tambah_promosi.php
↓
X
📄 tambah_rekening.php
↓
X
📄 tambah_rekening.php#
↓
X
📄 tambah_staff.php
↓
X
📄 test.php
↓
X
📄 ubah_anggota.php
↓
X
📄 ubah_bonus.php
↓
X
📄 ubah_bukti_jp.php
↓
X
📄 ubah_deposit.php
↓
X
📄 ubah_ikon_mengambang.php
↓
X
📄 ubah_kyc.php
↓
X
📄 ubah_promosi.php
↓
X
📄 ubah_rekening.php
↓
X
📄 ubah_saldo.php
↓
X
📄 ubah_staff.php
↓
X
📄 ubah_withdraw.php
↓
X
📄 verifikasi.php
↓
X
📄 wd.txt
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: anggota.php
<?php include_once '../koneksi.php'; if (!isset($_SESSION['kode_admin'])) { echo ' <script> alert("Terjadi kesalahan, harap masuk kembali!"); window.location.replace("'.$alamat_admin.'keluar.php"); </script> '; } ?> <div class="container-xxl flex-grow-1 container-p-y"> <div class="row gy-4 mb-4"> <div class="col-md-6"> <div class="fw-bold fs-4 text-center text-md-start">Anggota</div> </div> <div class="col-md-6"> <div class="text-center text-md-end"> <div> <a href="<?php echo $alamat_admin.'tambah_anggota'; ?>" class="btn btn-sm btn-primary waves-effect waves-light"> <span class="tf-icons mdi mdi-plus me-1"></span> Tambah Data </a> </div> </div> </div> <div class="card table-responsive p-3"> <table class="table" id="example"> <thead> <tr> <th scope="col" class="text-center">#</th> <th scope="col" class="text-center">Nama Pengguna</th> <th scope="col" class="text-center">Email</th> <th scope="col" class="text-center">Telepon</th> <th scope="col" class="text-center">Bank</th> <th scope="col" class="text-center">Nama Rekening</th> <th scope="col" class="text-center">Nomor Rekening</th> <th scope="col" class="text-center">Saldo</th> <th scope="col" class="text-center">Status</th> <th scope="col" class="text-center">Game</th> <th scope="col" class="text-center">Aksi</th> </tr> </thead> <tbody> <?php $nomor_anggota = 1; $anggota = mysqli_query($koneksi, "SELECT * FROM anggota ORDER BY id_anggota DESC"); while ($data_anggota = mysqli_fetch_array($anggota)) { if (mysqli_num_rows($anggota) >= 1) { $id_anggota = $data_anggota['id_anggota']; $nama_pengguna_anggota = $data_anggota['nama_pengguna_anggota']; $kata_sandi_anggota = $data_anggota['kata_sandi_anggota']; $email_anggota = $data_anggota['email_anggota']; $telepon_anggota = $data_anggota['telepon_anggota']; $bank_anggota = $data_anggota['bank_anggota']; $nama_rekening_anggota = $data_anggota['nama_rekening_anggota']; $nomor_rekening_anggota = $data_anggota['nomor_rekening_anggota']; $saldo_anggota = $data_anggota['saldo_anggota']; $status_anggota = $data_anggota['status_anggota']; $status_game = $data_anggota['status_game']; // Menambahkan status_game ?> <tr> <th scope="row" class="text-center"><?php echo $nomor_anggota++; ?></th> <td class="text-center"><?php echo $nama_pengguna_anggota; ?></td> <td class="text-center"><?php echo $email_anggota; ?></td> <td class="text-center"><?php echo $telepon_anggota; ?></td> <td class="text-center"><?php echo $bank_anggota; ?></td> <td class="text-center"><?php echo $nama_rekening_anggota; ?></td> <td class="text-center"><?php echo $nomor_rekening_anggota; ?></td> <td class="text-center"><?php echo 'Rp.' . number_format($saldo_anggota, 0, ',', '.'); ?></td> <td class="text-center"><?php echo $status_anggota; ?></td> <td class="text-center"><?php echo $status_game; ?></td> <td class="text-center"> <a href="<?php echo $alamat_admin.'ubah_anggota/'.$id_anggota; ?>" class="btn btn-sm btn-primary waves-effect waves-light"> <span class="tf-icons mdi mdi-pencil me-1"></span> Ubah </a> </td> </tr> <?php } else { ?> <tr> <td class="text-center" colspan="10">Tidak Ada Data</td> </tr> <?php } } ?> </tbody> </table> </div> </div> </div>
SIMPAN PERUBAHAN