PATH: //home/hwyuvbry/dear.waroenkhoki123.web.id
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📁 .vscode/
X
📁 .well-known/
X
📄 PlayGame.php
↓
X
📁 _next/
X
📄 about.php
↓
X
📄 account_balance.php
↓
X
📁 ajax/
X
📁 assets/
X
📄 auth-login.php
↓
X
📄 auth-register.php
↓
X
📄 callbackQRIS.php
↓
X
📄 carousel_slider.php
↓
X
📄 casino.php
↓
X
📁 cgi-bin/
X
📄 change-pasword.php
↓
X
📁 classes/
X
📄 deposit-progress.php
↓
X
📄 deposit.php
↓
X
📄 details-promo.php
↓
X
📄 details.php
↓
X
📄 egames.php
↓
X
📄 error_log
↓
X
📁 event/
X
📄 footer.php
↓
X
📄 fungsi_umum.php
↓
X
📄 game-popular.php
↓
X
📄 game-recomended.php
↓
X
📄 header.php
↓
X
📄 history-deposit.php
↓
X
📄 history-withdraw.php
↓
X
📄 home.php
↓
X
📄 htaccess-sc-nuke
↓
X
📄 hwyuvbry_blacky.sql
↓
X
📄 index.php
↓
X
📄 index.php##
↓
X
📄 kanvas.php
↓
X
📄 koneksi.php
↓
X
📄 kyc.php
↓
X
📄 logout.php
↓
X
📄 lottery.php
↓
X
📄 lucky-spin.php
↓
X
📄 my-account.php
↓
X
📄 otp.php
↓
X
📄 pragmatic-game.php
↓
X
📄 process_kyc.php
↓
X
📄 process_login.php
↓
X
📄 process_register.php
↓
X
📄 process_reset_password.php
↓
X
📄 promo.php
↓
X
📄 proses_deposit.php
↓
X
📄 qris-progress.php
↓
X
📄 qris.php
↓
X
📄 referal.php
↓
X
📄 rekening.php
↓
X
📁 rtp/
X
📄 setting.php
↓
X
📄 slot.php
↓
X
📄 sports.php
↓
X
📁 staff/
X
📁 svg/
X
📄 telegram_log.txt
↓
X
📄 test-api.php
↓
X
📁 topadmin/
X
📄 update_saldo.php
↓
X
📁 uploads/
X
📄 withdraw-progress.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: game-recomended.php
<div class="w-full px-3 mt-1 lg:mt-4 order-6"> <p class="md:text-lg font-medium">Game Rekomendasi</p> <div class="mt-3 -mx-[5px] lg:-mx-2 pb-2 whitespace-nowrap overflow-x-scroll overflow-y-hidden lg:overflow-x-hidden opacity-scroll"> <?php // Query untuk mengambil daftar game rekomendasi dari database $query_game_rekomendasi = "SELECT * FROM tb_gamelist WHERE provider = 'PRAGMATIC' AND datatype = 'SL' ORDER BY RAND() LIMIT 6"; $result_game_rekomendasi = mysqli_query($koneksi, $query_game_rekomendasi); while ($row_game = mysqli_fetch_assoc($result_game_rekomendasi)) { $nama_game = $row_game['gamename']; $gambar_game = $row_game['image']; $provider_game = $row_game['provider']; $kode_game = $row_game['gamecode']; ?> <div class="w-[40%] md:w-[26%] lg:w-1/6 px-[5px] lg:px-2 inline-block"> <?php // Periksa apakah pengguna sudah login if (isset($_SESSION['id_anggota'])) { // Pengguna sudah login $href = "PlayGame.php?game_code=" . $kode_game . "&p=" . $provider_game; } else { $href = "javascript:registerPopup({ content:'" . htmlspecialchars($isi_1_popup_teks_belum_login_web, ENT_QUOTES, 'UTF-8') . "' });"; } ?> <a href="<?php echo $href; ?>" class="relative pb-3 w-full group overflow-hidden"> <div class="w-full rounded-xl lg:rounded-2xl" style="box-shadow: rgba(204, 210, 227, 0.5) 0px 0px 28.8428px inset;"> <figure class="relative overflow-hidden rounded-xl lg:rounded-2xl aspect-square"> <img alt="<?php echo $nama_game; ?>-<?php echo $provider_game; ?>" loading="lazy" width="300" height="300" decoding="async" data-nimg="1" class="w-full h-full object-cover group-hover:lg:scale-110 transition-all duration-300 ease-in-out" src="<?php echo $gambar_game; ?>" style="color: transparent;"> </figure> </div> <div class="absolute left-2 right-2 md:left-6 md:right-6 bottom-1 z-50"> <p class="text-xs md:text-sm text-center truncate z-10 relative px-2 py-[2px] md:py-1 bg-background-secondary rounded-full"><?php echo $nama_game; ?></p> <div class="rainbow left-[-1px] right-[-1px] top-[-1px] bottom-[-1px] rounded-full"></div> </div> </a> </div> <?php } ?> </div> </div>
SIMPAN PERUBAHAN