Файловый менеджер - Редактировать - C:/wwwroot/www.game-competition.com/static/img/logo/xhr.tar
�азад
all-games.php 0000666 00000001616 15032463742 0007135 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 = 80; $row = ($page - 1) * $limit; $query = "SELECT * from zon_games WHERE game_published != 'No' order by game_sort DESC, id asc 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> <!-- echo $game['game_banner_url'] == '' ? $game['game_image_url'] : $game['game_banner_url'] --> </div> </div> <?php } ?>