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: bukti_jp.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">Bukti JP</div> </div> <div class="col-md-6"> <div class="text-center text-md-end"> <a href="<?php echo $alamat_admin.'tambah_bukti_jp'; ?>" 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">Judul</th> <th scope="col">Deskripsi</th> <th scope="col">Tanggal</th> <th scope="col">Link</th> <th scope="col">Aksi</th> </tr> </thead> <tbody> <?php $nomor_bukti_jp = 1; $bukti_jp = mysqli_query($koneksi, "SELECT * FROM bukti_jp"); while ($data_bukti_jp = mysqli_fetch_array($bukti_jp)) { if (mysqli_num_rows($bukti_jp) >= 1) { $id_bukti_jp = $data_bukti_jp['id_bukti_jp']; $id_bukti_jp = $data_bukti_jp['id_bukti_jp']; $judul_bukti_jp = $data_bukti_jp['judul_bukti_jp']; $deskripsi_bukti_jp = $data_bukti_jp['deskripsi_bukti_jp']; $gambar_bukti_jp = $data_bukti_jp['gambar_bukti_jp']; $tanggal_bukti_jp = $data_bukti_jp['tanggal_bukti_jp']; $link_bukti_jp = $data_bukti_jp['link_bukti_jp']; ?> <tr> <th scope="row"><?php echo $nomor_bukti_jp++; ?></th> <td><?php echo $judul_bukti_jp; ?></td> <td><?php echo $deskripsi_bukti_jp; ?></td> <td><?php echo tanggalIndonesia($tanggal_bukti_jp, true); ?></td> <td><?php echo $link_bukti_jp; ?></td> <td> <a href="<?php echo $alamat_admin.'ubah_bukti_jp/'.$id_bukti_jp; ?>" 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="6">Tidak Ada Data</td> </tr> <?php } } ?> </tbody> </table> </div> </div>
SIMPAN PERUBAHAN