PATH: //proc/self/root/proc/thread-self/root/proc/thread-self/root/proc/2839226/cwd/m
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📄 arcade.php
↓
X
📄 callback.php
↓
X
📄 casino.php
↓
X
📄 create_pp.php
↓
X
📄 deposit.php
↓
X
📄 deposit.php#
↓
X
📄 deposit.php###
↓
X
📄 deposit.php$
↓
X
📄 error_log
↓
X
📄 history.php
↓
X
📄 history.php#
↓
X
📄 history_ajax.php
↓
X
📄 index.php
↓
X
📄 kontol.php
↓
X
📄 logout.php
↓
X
📄 maintenance.php
↓
X
📄 memo.php
↓
X
📄 password.php
↓
X
📄 payment.php
↓
X
📄 refferal.php
↓
X
📄 rekening.php
↓
X
📄 slots.php
↓
X
📄 slots.php#
↓
X
📄 sports.php
↓
X
📄 togel.php
↓
X
📄 withdraw.php
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: kontol.php
<style> .container-game-custom { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; /* Jarak antar kotak game */ padding: 5px; } /* Pengaturan untuk MOBILE (Default 4 Kolom) */ .card-game-wrapper { width: calc(25% - 10px); /* Membagi 100% layar jadi 4 (25%) */ margin-bottom: 10px; } /* Pengaturan untuk PC (Balik ke ukuran normal agar tidak melar) */ @media (min-width: 768px) { .card-game-wrapper { width: 170px; } } .card-game-link { text-decoration: none; display: block; background-color: #d32f2f; padding: 8px; border-radius: 12px; border: 2px solid #b71c1c; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .card-game-link img { width: 100%; /* Gambar menyesuaikan lebar kotak */ height: auto; border-radius: 8px; display: block; margin: 0 auto; } .card-game-title { text-align: center; margin-top: 5px; color: #ffffff; font-weight: bold; font-size: 10px; /* Ukuran font agak kecil agar muat 4 kolom */ text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } </style> <div class="container-game-custom"> <?php // ============================= // 3. TAMPILKAN GAME PRIORITAS // ============================= while ($s3 = mysqli_fetch_array($sql_prioritas)) { if ($statusGame == -1) { $playUrl = $urlweb . "/login/"; $stylenya = ''; } else { $playUrl = $urlweb . '/gameplay/Play.php?gamecode=' . $s3['gameid'] . '&p=' . $s3['provider']; $stylenya = ($statusGame == 0) ? 'display:none;' : 'display:block;'; } ?> <div class="card-game-wrapper" style="<?= $stylenya; ?>"> <a href="<?= $playUrl; ?>" class="card-game-link"> <img src="<?= $s3['image']; ?>" loading="lazy"> <div class="card-game-title"><?= $s3['gamename']; ?></div> </a> </div> <?php } ?> </div> <div class="container-game-custom"> <?php // ============================= // 4. TAMPILKAN GAME LAINNYA // ============================= while ($s3 = mysqli_fetch_array($sql_others)) { if ($statusGame == -1) { $playUrl = $urlweb . "/login/"; $stylenya = ''; } else { $playUrl = $urlweb . '/gameplay/Play.php?gamecode=' . $s3['gameid'] . '&p=' . $s3['provider']; $stylenya = ($statusGame == 0) ? 'display:none;' : 'display:block;'; } ?> <div class="card-game-wrapper" style="<?= $stylenya; ?>"> <a href="<?= $playUrl; ?>" class="card-game-link"> <img src="<?= $s3['image']; ?>" loading="lazy"> <div class="card-game-title"><?= $s3['gamename']; ?></div> </a> </div> <?php } ?> </div>
SIMPAN PERUBAHAN