File "content-20250112075008.phtml"

Full Path: /www/wwwroot/turbocarclub.com/themes/asur/layout/page/content-20250112075008.phtml
File size: 988 bytes
MIME-type: --
Charset: utf-8

<?php
global $zon;
$category_name = urldecode(htmlspecialchars($_GET['n'] ?? $zon['page'][1]));
// $category_name = $_GET['n'] ?? $zon['page'][1];
$query = "SELECT * from zon_games WHERE game_category='$category_name' order by id asc";
?>

<div class="layout-section">
    <div class="container-fluid">
        <div class="row">
            <div class="col-lg">
                <div class="layout-heading mb-4">
                    <h1 class="h2"><?php echo $category_name ?> Games</h1>
                    <div class="fs-sm text-muted"><?= count(runner($query)) ?> games in total </div>
                </div>
                <div id="zon_games" class="card-masonry mb-4"></div>
                <?php if (getAdById(1, 'status') == 0) { ?>
                    <div class="mx-lg-auto py-3 px-3 mb-3">
                        <?php echo getAdById(1, 'code') ?>
                    </div>
                <?php } ?>
            </div>
        </div>
    </div>
</div>