PATH: //home/hwyuvbry/pelanggan.waroenkhoki123.web.id/komando86
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📄 admin_togel.php
↓
X
📄 admin_togel.php#$
↓
X
📄 ajax_riwayat.php
↓
X
📄 anggota.php
↓
X
📁 assets/
X
📄 banner.php
↓
X
📄 bonus.php
↓
X
📄 bukti_jp.php
↓
X
📄 check_data_changes.php
↓
X
📄 config.php
↓
X
📄 dasbor.php
↓
X
📄 dasbor.php#
↓
X
📄 deposit.php
↓
X
📄 downline.php
↓
X
📄 downline.php#
↓
X
📄 error_log
↓
X
📄 footer.php
↓
X
📄 game-list.php
↓
X
📄 game-lists.php
↓
X
📄 ikon_mengambang.php
↓
X
📄 index.php
↓
X
📄 input_manual_result.php
↓
X
📄 keluar.php
↓
X
📄 kyc.php
↓
X
📄 masuk.php
↓
X
📄 masuk_step_1.php
↓
X
📄 navbar.php
↓
X
📄 pemberitahuan.php
↓
X
📄 pengaturan.php
↓
X
📄 profil.php
↓
X
📄 promosi.php
↓
X
📄 proses-claim.php
↓
X
📄 provider.php
↓
X
📄 qris.php
↓
X
📄 qris.php#
↓
X
📄 refferal.php
↓
X
📄 refferal.php#
↓
X
📄 rekening.php
↓
X
📄 saldo.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_staff.php
↓
X
📄 ubah_anggota.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_uuid.php
↓
X
📄 ubah_withdraw.php
↓
X
📄 update_claim.php
↓
X
📄 verifikasi.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: staff.php
<?php include_once '../db/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">Staff</div> </div> <div class="col-md-6"> <div class="text-center text-md-end"> <a href="<?php echo $alamat_admin.'tambah_staff'; ?>" 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">#</th> <th scope="col">Nama</th> <th scope="col">Nama Pengguna</th> <th scope="col">Status</th> <th scope="col">Aksi</th> </tr> </thead> <tbody> <?php $nomor_staff = 1; $staff = mysqli_query($koneksi, "SELECT * FROM staff"); while ($data_staff = mysqli_fetch_array($staff)) { if (mysqli_num_rows($staff) >= 1) { $id_staff = $data_staff['id_staff']; $nama_staff = $data_staff['nama_staff']; $nama_pengguna_staff = $data_staff['nama_pengguna_staff']; $kata_sandi_staff = $data_staff['kata_sandi_staff']; $pin_staff = $data_staff['pin_staff']; $status_staff = $data_staff['status_staff']; ?> <tr> <th scope="row"><?php echo $nomor_staff++; ?></th> <td><?php echo $nama_staff; ?></td> <td><?php echo $nama_pengguna_staff; ?></td> <td><?php echo $status_staff; ?></td> <td> <a href="<?php echo $alamat_admin.'ubah_staff/'.$id_staff; ?>" 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="5">Tidak Ada Data</td> </tr> <?php } } ?> </tbody> </table> </div> </div> <script> $(document).ready(function () { $('#example').DataTable({ "pageLength": 25, "autoWidth": false, "ordering": true }); }); </script> <script> $(document).ready(function(){ var table = $('#example').DataTable(); $('#searchTable').on('keyup', function(){ table.search(this.value).draw(); }); }); </script>
SIMPAN PERUBAHAN