Файловый менеджер - Редактировать - C:/wwwroot/gamegowins.com/static/img/logo/new-games.php.tar
�азад
C:/wwwroot/gamegowins.com/xhr/new-games.php 0000666 00000002175 15032122233 0014664 0 ustar 00 <?php require_once '../config.php'; require_once '../app/includes/constant.php'; require_once '../app/includes/app_start.php'; $page = $_POST['page'] ?? 1; $limit = 30; $row = ($page - 1) * $limit; $query = "SELECT * from zon_games WHERE game_published != 'No' order by game_quality desc, game_sort desc limit $row,$limit"; $run = mysqli_query($con, $query); // $game = mysqli_fetch_all($run); while ($game = mysqli_fetch_assoc($run)) { ?> <div class="rounded-lg wow <?php echo $zon['config']['animate_class'] ?>"> <div class="game-card w-full"> <a href="<?php echo $site_url . 'game-details/' . makeSlug($game['game_name']) . '/' . $game['id'] ?>" > <img src="<?= $game['game_image_url'] ?>" /> </a> <div class="game-details gap-4"> <a href="<?php echo $site_url . 'game-details/' . makeSlug($game['game_name']) . '/' . $game['id'] ?>" class="text-xs line-clamp-2 font-semibold"> <?= $game['game_name'] ?> </a> </div> </div> </div> <?php } ?>