Файловый менеджер - Редактировать - /home/flapvehx/streamnexus.online/static/img/logo/includes.zip
Ðазад
PK �ZKw� � header.phpnu �[��� <!DOCTYPE html> <html lang="en" class="dark:bg-zinc-800"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="robots" content="noindex, nofollow"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <?php if (!empty($page)) { ?> <title><?php echo $page ?></title> <?php } else { ?> <title><?php echo Zon_Config('site_name') ?></title> <?php } ?> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <link rel="stylesheet" href="assets/css/style.css"> <link rel="stylesheet" href="assets/vendor/bootstrap-icons/bootstrap-icons.css"> <link rel="shortcut icon" href="<?php echo $site_url ?>static/img/logo/<?php echo Zon_Config('site_favicon') ?>" type="image/x-icon"> <script src="assets/js/tailwind.js"></script> <script src="https://cdn.ckeditor.com/ckeditor5/37.0.1/classic/ckeditor.js"></script> </head>PK �ZwwEP P functions.phpnu �[��� <?php session_start(); require_once 'config.php'; require_once 'function_general.php'; // registration Action if (isset($_POST['signup']) && isset($_POST)) { $name = mysqli_real_escape_string($con, $_POST['name']); $email = mysqli_real_escape_string($con, $_POST['email']); $username = mysqli_real_escape_string($con, $_POST['username']); $password = mysqli_real_escape_string($con, $_POST['password']); $_SESSION['email'] = $email; $_SESSION['name'] = $name; $_SESSION['username'] = $username; $emailValidate = "select * from zon_users where email=$email"; if (ValidateFields('email', $email)) { @header("location: ../register?email_msg=Email Already Exist"); } else if (ValidateFields('username', $username)) { @header("location: ../register?username_msg=Username Already Exist"); } else { $user_pic = "user_pic.png"; $query = "INSERT INTO zon_users (`name`, `email`, `username`, `password`, `user_pic`) VALUES ('$name', '$email', '$username', '$password', '$user_pic') "; if (mysqli_query($con, $query)) { @header("location: ../login"); unset($_SESSION['email']); unset($_SESSION['name']); unset($_SESSION['username']); } } } // login action if (isset($_POST['login'])) { $email_username = mysqli_real_escape_string($con, $_POST['username_email']); $password = mysqli_real_escape_string($con, $_POST['password']); $user_id = mysqli_real_escape_string($con, $_POST['id']); $query = "select * from zon_users where email='$email_username' || username='$email_username' && password='$password'"; $row = mysqli_fetch_assoc(mysqli_query($con, $query)); if (mysqli_num_rows(mysqli_query($con, $query)) !== 0) { if ($row['status'] == 0) { $_SESSION['Loggedin'] = true; $_SESSION['Loggedin_user'] = $email_username; if ($row['is_admin'] == 1) { $_SESSION['is_admin_Loggedin'] = true; } $user_data = mysqli_fetch_assoc(mysqli_query($con, "select * from zon_users where username='$email_username' || email='$email_username'")); $_SESSION['Loggedin_user_id'] = $user_data['id']; @header("Location: ../"); } else { @header("Location: ../login?error=Your account is closed"); } } else { @header("Location: ../login?error=Wrong username or email and password"); } } // comment action if (isset($_POST) && isset($_POST['comment'])) { $subject = Secure_DATA($_POST['subject']); $date = Secure_DATA($_POST['date']); $game_id = Secure_DATA($_POST['game_id']); $user_id = Secure_DATA($_POST['user_id']); $url = Secure_DATA($_POST['url']); $query = "insert into zon_comments (user_id, game_id, subject, date) values ($user_id, $game_id, '$subject', '$date')"; if (!empty($subject)) { if (mysqli_query($con, $query)) { @header("location: $url"); } } else { @header("location: $url"); } } // comment delete action if (isset($_GET['page']) && isset($_GET['id']) && $_GET['page'] == 'comments') { $id = $_GET['id']; $redirect = $_GET['redirect']; $query = "delete from zon_comments where id=$id"; if (mysqli_query($con, $query)) { @header("location: $redirect"); } } // change profile setting action if (isset($_POST['change_settings'])) { $url = Secure_DATA($_GET['url']); $name = Secure_DATA($_POST['name']); $id = Secure_DATA($_POST['id']); $username = Secure_DATA($_POST['username']); $email = Secure_DATA($_POST['email']); $password = Secure_DATA($_POST['new_password']); $user_pic = ''; $query = "UPDATE zon_users set `name`='$name', `email`='$email', `username`='$username' where id=$id"; if ($_FILES['avatar_img']) { $user_pic = rand(111111111, 999999999) . $_FILES['avatar_img']['name']; if (move_uploaded_file($_FILES['avatar_img']['tmp_name'], "../static/img/" . $user_pic)) { } } if (!empty($password)) { $query = "UPDATE zon_users set `name`='$name', `email`='$email', `username`='$username', `password`='$password' where id=$id"; } else { if ($_FILES['avatar_img']['error'] == 0) { $query = "UPDATE zon_users set `name`='$name', `email`='$email', `username`='$username', `user_pic`='$user_pic' where id=$id"; } } if ($_FILES['avatar_img']['error'] == 0 && !empty($password)) { $query = "UPDATE zon_users set `name`='$name', `email`='$email', `username`='$username', `password`='$password', `user_pic`='$user_pic' where id=$id"; } if (mysqli_query($con, $query)) { @header("location: $url"); } } PK �Z#A�5 5 config.phpnu �[��� <?php require '../includes/config.php'; // $host_name = 'localhost'; // $sql_db_user = 'root'; // $sql_db_pass = ''; // $sql_db_name = 'zontal'; // $con = mysqli_connect($host_name, $sql_db_user, $sql_db_pass, $sql_db_name); // $site_url = "http://localhost/Zontal/"; ?>PK �Z���ĺ � function_general.phpnu �[��� <?php require_once 'config.php'; // Getting All User Data this Function echo Data function User_Data($column) { global $con; $current_user = $_SESSION['Loggedin_user_id']; $sql = "select * from zon_users where id=$current_user"; $run = mysqli_query($con, $sql); $row = mysqli_fetch_assoc($run); echo $row[$column]; } // Getting All User Data this Function return Data function User_Data_Two($column) { global $con; if (isset($_SESSION['Loggedin_user'])) { $current_user = $_SESSION['Loggedin_user_id']; $sql = "select * from zon_users where id=$current_user"; $row = mysqli_fetch_assoc(mysqli_query($con, $sql)); return $row[$column]; } } // Getting user Data by column name and condition function User_Data_By_Cond($column, $cond) { global $con; $sql = "select * from zon_users where $cond"; $row = mysqli_fetch_assoc(mysqli_query($con, $sql)); return $row[$column]; } // Getting All Game Data this Function print Data function Game_Data($id, $data) { global $con; $query = "SELECT * from zon_games where id=$id"; $row = mysqli_fetch_assoc(mysqli_query($con, $query)); echo $row[$data]; } // Getting All Game Data this Function return data function Game_Data_Two($id, $data) { global $con; $query = "SELECT * from zon_games where id=$id"; $row = mysqli_fetch_assoc(mysqli_query($con, $query)); return $row[$data]; } // Secure Data function Secure_DATA($d) { global $con; return htmlspecialchars(mysqli_real_escape_string($con, $d)); } // Checking Data From Databse exist or not function Exist_Data($table, $condition) { global $con; $query = "select * from $table where $condition"; return mysqli_num_rows(mysqli_query($con, $query)); } // Getting Game Likes function Game_Likes($data, $condition) { global $con; $query = "select * from zon_likes where $condition"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); return $row[$data]; } // Getting All Configuraton Data of Site function Zon_Config($data) { global $con; $query = "select * from zon_config"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); return $row[$data]; } // Play Newest function AutoPlay() { global $con; global $site_url; $query = "select * from zon_games order by id desc limit 1"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); echo $site_url . "single/" . $row['id'] . "/" . $row['game_name']; } // Getting Category Data function Category_Data($data, $condition) { global $con; $query = "select * from zon_category where $condition"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); if (!empty($row[$data])) { return $row[$data]; } else { return false; } } // Getting Likes Data function Game_likes_data($data) { global $con; $current_user = User_Data_Two('id'); $query = "select * from zon_likes where user_id=$current_user"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); return $row[$data]; } // Getting Total Numbers of Rows of Games function Total_Games() { global $con; $query = "select * from zon_games"; return mysqli_num_rows(mysqli_query($con, $query)); } // Getting Total Numbers of Rows By Table Name function Total_Items ($table) { global $con; $query = "select * from $table"; return mysqli_num_rows(mysqli_query($con, $query)); } // check user is in database or not function ValidateFields($field, $var) { global $con; $Validate = "select * from zon_users where $field='$var'"; return mysqli_num_rows(mysqli_query($con, $Validate)); } // Getting Page Data From Database function page_data ($id, $data) { global $con; $query = "select * from zon_pages where id=$id"; $run = mysqli_query($con, $query); $row = mysqli_fetch_assoc($run); return $row[$data]; }PK �Z��y[� � footer.phpnu �[��� <script src="<?php echo $site_url?>admin/assets/js/main.js"></script> <script> const DROP_BUTTON=document.querySelectorAll(".drop_btn");null!==DROP_BUTTON&&DROP_BUTTON.forEach(e=>{e.addEventListener("click",()=>{let t=e.getAttribute("data-target");document.querySelector(t).classList.toggle("show")})});const TAB_BUTTON=document.querySelectorAll(".tab-button"),TAB=document.querySelectorAll(".tab");function ActiveButton(){TAB_BUTTON.forEach(e=>{e.classList.remove("bg-blue-500"),e.classList.remove("text-gray-100"),e.classList.add("text-gray-500")}),this.classList.add("bg-blue-500"),this.classList.replace("text-gray-500","text-gray-100")}null!==TAB_BUTTON&&TAB_BUTTON.forEach(e=>{e.addEventListener("click",t=>{TAB.forEach(e=>{e.classList.add("hidden"),e.classList.remove("show")});let l=e.getAttribute("data-target");document.querySelector(l).classList.remove("hidden"),document.querySelector(l).classList.toggle("block")})}),null!==TAB_BUTTON&&TAB_BUTTON.forEach(e=>{e.addEventListener("click",ActiveButton)});const USER_PROFILE_UPLOAD_IMAGE_BUTTON=document.getElementById("pic_upload_button");null!==USER_PROFILE_UPLOAD_IMAGE_BUTTON&&USER_PROFILE_UPLOAD_IMAGE_BUTTON.addEventListener("click",()=>{document.getElementById("user_profile_pic").click()});const FILE_TYPE=document.getElementById("File_Type");null!==FILE_TYPE&&(FILE_TYPE.addEventListener("change",()=>{("File"===FILE_TYPE.value||"URL"===FILE_TYPE.value)&&"null"!==FILE_TYPE.value&&(console.warn(FILE_TYPE.value),"File"===FILE_TYPE.value?document.getElementById("FILE_IMAGE").classList.remove("hidden"):document.getElementById("FILE_IMAGE").classList.add("hidden"),"URL"===FILE_TYPE.value?document.getElementById("URL_IMAGE").classList.remove("hidden"):document.getElementById("URL_IMAGE").classList.add("hidden"))}),window.addEventListener("load",()=>{null!==FILE_TYPE&&("File"===FILE_TYPE.value||"URL"===FILE_TYPE.value)&&"null"!==FILE_TYPE.value&&(console.warn(FILE_TYPE.value),"File"===FILE_TYPE.value?document.getElementById("FILE_IMAGE").classList.remove("hidden"):document.getElementById("FILE_IMAGE").classList.add("hidden"),"URL"===FILE_TYPE.value?document.getElementById("URL_IMAGE").classList.remove("hidden"):document.getElementById("URL_IMAGE").classList.add("hidden"))}));const CATEGORY_INPUT=document.getElementById("category_name");null!==CATEGORY_INPUT&&CATEGORY_INPUT.addEventListener("keyup",e=>{var t=e.target.value;document.getElementById("category_slug").innerHTML=t}); console.log(CATEGORY_INPUT) </script> <script> document.querySelectorAll("body").forEach((e) => { e.classList.add("dark:bg-[#121317]"); }); document.querySelectorAll("input, select").forEach((e) => { e.classList.add("dark:bg-zinc-900"); }); </script>PK �Z���ff) f) main-h.phpnu �[��� <header class="sticky dark:bg-zinc-900 header-main top-0 bg-white mb-2 py-1 "> <div class="container-zon between items-center px-2 flex"> <div class="flex items-center w-full"> <div class="logo"> <a href="<?php echo $site_url ?>"> <?php // This logo image will appear if the theme is in Light mode ?> <img class="dark:hidden block" mode-light width="130" src="<?php echo $site_url ?>static/img/logo/<?php echo Zon_Config('site_logo_light') ?>" alt="zontal"> <?php // This logo image will appear if the theme is in dark mode ?> <img class="dark:block hidden" mode-dark width="130" src="<?php echo $site_url ?>static/img/logo/<?php echo Zon_Config('site_logo_dark') ?>" alt="zontal"> </a> </div> <ul class="flex ml-12"> <?php // Newest ?> <li><a class="block px-4 text-sm text-gray-500 dark:text-gray-100" href="<?php echo $site_url ?>archive/newest">Newest</a></li> <?php // if Popular Games Available Minimum 18 Then Show Most Popular Option ?> <?php if (Exist_Data("zon_games", "game_played > 50") > 18) { ?> <li><a class="block px-4 text-sm text-gray-500 dark:text-gray-100" href="<?php echo $site_url ?>archive/popular">Most Popular</a></li> <?php } ?> <?php // This Link Play Newest Game of the site ?> <li><a class="block px-4 text-sm text-gray-500 dark:text-gray-100" href="<?php AutoPlay() ?>">AutoPlay</a></li> </ul> <?php // Search Bar Form ?> <form action="<?php echo $site_url ?>search" class="ml-6 bg-gray-100 search-bar rounded-full flex py-3"> <button class="fa fa-search text-white text-gray-800 px-4"></button> <input name="query" class="outline-none text-sm text-gray-700 text-light bg-transparent w-64" type="text" placeholder="Search Your Favourite Game"> </form> <?php // Search Bar Form End ?> </div> <div class="flex items-center opnal gap-3 px-12"> <?php // If User Not User Loggedin. This Links is Showing otherwise not ?> <?php if (!isset($_SESSION['Loggedin'])) { ?> <a href="<?php echo $site_url ?>login" class="text-gray-600 dark:text-gray-300 whitespace-nowrap px-2">Login</a> <a href="<?php echo $site_url ?>register" class="text-gray-600 dark:text-gray-300 whitespace-nowrap px-2">Sign up</a> <?php } ?> <?php if (isset($_SESSION['Loggedin'])) { ?> <?php if ($_SESSION['Loggedin'] == true) { ?> <?php // User Profile Menu ?> <div class="profile relative flex h-10 mr-20"> <img onclick="document.querySelector('.profile-dropdown').classList.toggle('hidden')" src="<?php echo $site_url ?>static/img/<?php User_Data('user_pic') ?>" class="h-10 cursor-pointer w-10 rounded-full mr-3 "> <div onclick="document.querySelector('.profile-dropdown').classList.toggle('hidden')" class="flex flex-column"> <a href="#" class="text-sm dark:text-gray-100"><?php User_Data('username') ?></a> <span class="text-xs text-gray-400 whitespace-nowrap"><?php echo Zon_Config("profile_tagline") ?></span> </div> <div class="profile-dropdown hidden py-2 rounded-lg w-52 bg-white dark:bg-zinc-800 absolute left-0 top-[50px]"> <ul class="w-full"> <?php if (isset($_SESSION['is_admin_Loggedin'])) { ?> <li><a href="<?php echo $site_url ?>admin/index" class="block py-2 px-3 dark:text-gray-300 text-sm">Admin Panel</a></li> <div class="divider w-full h-0.5 border-t mt-2 mb-2 border-gray-200 dark:border-zinc-700"></div> <?php } ?> <li><a href="<?php echo $site_url ?>user/likes" class="block py-2 px-3 dark:text-gray-300 text-sm">Liked Games</a></li> <li><a href="<?php echo $site_url ?>user/comments" class="block py-2 px-3 dark:text-gray-300 text-sm">Comments</a></li> <div class="divider w-full h-0.5 border-t mt-2 mb-2 border-gray-200 dark:border-zinc-700"></div> <li><a href="<?php echo $site_url ?>user/settings" class="block py-2 px-3 dark:text-gray-300 text-sm">Settings</a></li> <li><a href="<?php echo $site_url ?>logout" class="block py-2 px-3 dark:text-gray-300 text-sm">Logout</a></li> </ul> </div> </div> <?php // End User Profile Menu ?> <?php } ?> <?php } ?> </div> </div> </header> <?php // Mobile Header ?> <div class="mobile-header sticky mb-6 hidden bg-white shadow-lg dark:bg-zinc-900 items-center flex justify-between w-full"> <button id="open-search" class="search fa fa-search no-search-component dark:text-gray-100 px-4 text-xl"></button> <button id="close-search" class="search search-bar-component fa fa-close dark:text-gray-100 px-4 text-xl"></button> <form action="<?php echo $site_url ?>search" class="w-full flex search-bar-component"> <input name="query" placeholder="Search" type="text" class="w-full border-2 m-2 bg-transparent text-gray-700 dark:text-gray-200 outline-none py-3 px-2"> <button class="search fa fa-search dark:text-gray-100 px-4 text-xl"></button> </form> <a href="<?php echo $site_url ?>" class="no-search-component"> <img class="dark:hidden block" mode-light width="130" src="<?php echo $site_url ?>static/img/logo/logo-dark.png" alt="zontal"> <img class="dark:block hidden" mode-dark width="130" src="<?php echo $site_url ?>static/img/logo/logo.png" alt="zontal"> </a> <button class="fa fa-bars px-6 dark:text-gray-100 text-xl menu no-search-component"></button> </div> <?php // End Mobile Header ?> <style> .scroll-hidden::-webkit-scrollbar { display: none; } </style> <?php // Mobile Header Menu ?> <div class="offcanvas fixed top-0 left-0 h-[100%] w-full"> <div class="backdrop-blur-2 fixed h-full w-full top-0 left-0 blur-overlay"></div> <div class="menu-list bg-white dark:bg-zinc-900 offcanvas-menu"> <div class="close-offcanvas text-black dark:text-white cursor-pointer absolute font-bold px-4 py-4 select-none top-0 right-0 text-black text-lg "> ×</div> <div class="logo flex justify-center"> <a href="<?php echo $site_url ?>"> <img class="dark:hidden block" mode-light width="130" src="<?php echo $site_url ?>static/img/logo/logo-dark.png" alt="zontal"> <img class="dark:block hidden" mode-dark width="130" src="<?php echo $site_url ?>static/img/logo/logo.png" alt="zontal"> </a> </div> <ul class="w-full h-full overflow-y-scroll scroll-hidden "> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>">Home</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>archive/newest">newest</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>archive/popular">most popular</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php AutoPlay() ?>">autoplay</a></li> <li data-target="#dropdown-content" class="dropdown"> <a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200 cursor-pointer">categories <span class="fa fa-chevron-down text-xs"></span> </a> <ul id="dropdown-content" class="dropdown-content"> <?php $run = mysqli_query($con, "select * from zon_category"); while ($row = mysqli_fetch_assoc($run)) { ?> <li><a href="<?php echo $site_url ?>game/<?= $row['slug'] ?>" class="block px-4 py-2 uppercase text-[10px] text-gray-600 dark:text-gray-200"><?= $row['name'] ?></a></li> <?php } ?> </ul> </li> <?php if (!isset($_SESSION['Loggedin'])) { ?> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>login">login</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>register">signup</a></li> <?php } ?> <?php if (isset($_SESSION['Loggedin'])) { ?> <?php if ($_SESSION['Loggedin'] == true) { ?> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>user/admin/index">Admin Panel</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>user/likes">liked games</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>user/comments">comments</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>user/settings">settings</a></li> <li><a class="block px-4 py-2 uppercase text-xs text-gray-600 dark:text-gray-200" href="<?php echo $site_url ?>logout">logout</a></li> <?php } } ?> </ul> </div> </div> <?php // End Mobile Header Menu ?> <style> .cat-item-container { scroll-behavior: smooth; } .scroll-c-hidden { -ms-overflow-style: none; scrollbar-width: none; } .scroll-c-hidden::-webkit-scrollbar { display: none; } #w-full-scroll { width: calc(100 * <?php echo $count ?>px); } .cat-container { max-width: 1550px; margin: auto; } </style>PK �Z��`ތ � error_lognu �[��� [27-Nov-2024 14:37:55 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Nov-2024 20:04:00 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Nov-2024 20:04:04 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Nov-2024 20:04:07 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Nov-2024 20:04:11 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [02-Dec-2024 18:42:21 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [16-Dec-2024 15:07:25 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [15-Jan-2025 15:54:00 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [24-Jan-2025 22:51:25 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [26-Jan-2025 23:22:07 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [26-Jan-2025 23:35:10 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [01-Feb-2025 14:57:25 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [02-Feb-2025 15:33:08 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [05-Feb-2025 13:59:28 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [05-Feb-2025 15:01:23 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [05-Feb-2025 17:56:31 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [06-Feb-2025 06:43:01 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [06-Feb-2025 19:27:36 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [07-Feb-2025 08:12:59 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [07-Feb-2025 21:00:12 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [08-Feb-2025 09:46:02 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [09-Feb-2025 09:24:52 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [09-Feb-2025 22:10:34 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [10-Feb-2025 10:55:37 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [10-Feb-2025 23:41:09 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [11-Feb-2025 12:26:11 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [13-Feb-2025 18:29:36 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [13-Feb-2025 22:04:44 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [14-Feb-2025 10:49:25 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [15-Feb-2025 22:02:52 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [16-Feb-2025 10:47:58 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [16-Feb-2025 23:33:20 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [17-Feb-2025 12:18:19 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [18-Feb-2025 01:13:57 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [18-Feb-2025 13:57:49 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [19-Feb-2025 02:40:57 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [20-Feb-2025 02:14:55 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Feb-2025 20:25:01 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Feb-2025 22:22:59 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [27-Feb-2025 22:55:06 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [28-Feb-2025 18:03:29 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [01-Mar-2025 06:57:56 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [03-Mar-2025 09:54:42 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 [03-Mar-2025 19:19:42 UTC] PHP Warning: Undefined array key "id" in /home/flapvehx/streamnexus.online/includes/functions.php on line 44 PK �ZCQw�� � ajax/cd.phpnu �[��� <?php require_once('../config.php'); $page = $_POST['page'] ?? 1; $limit = 30; $row = ($page - 1) * $limit; $name = $_POST['name']; // Ready Query by Category Name $query = "SELECT * from zon_games where game_category='$name' order by id desc limit $row,$limit"; $run = mysqli_query($con, $query); $game = mysqli_fetch_all($run); foreach ($game as $row) { ?> <a href="<?php echo $site_url ?>single/<?= $row[0] ?>/<?php $text = $row[1]; $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[3] ?>" class="w-full h-full object-cover" alt="<?= $row[1] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row[1] ?></h2> </a> <?php } ?>PK �Z���(� � ajax/insert-played-views.phpnu �[��� <?php require_once("../config.php"); require_once("../function_general.php"); if (isset($_POST) && isset($_POST['view']) && isset($_POST['id'])) { $view = Secure_DATA($_POST['view']); // $view ++; $id = Secure_DATA($_POST['id']); $current = Game_Data_Two($id, 'game_played') + 1; // $total = +$view; if (mysqli_query($con, "update zon_games set game_played=$current where id=$id")) { echo "Success"; } } PK �Z�A�� � ajax/sr.phpnu �[��� <?php require_once('../config.php'); $page = $_POST['page'] ?? 1; $limit = 30; $row = ($page - 1) * $limit; $query = $_POST['name']; // Ready Query by Category Name $query = "SELECT * from zon_games where game_name like '%$query%' order by id desc limit $row,$limit"; $run = mysqli_query($con, $query); $game = mysqli_fetch_all($run); foreach ($game as $row) { ?> <a href="<?php echo $site_url ?>single/<?= $row[0] ?>/<?php $text = $row[1]; $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[3] ?>" class="w-full h-full object-cover" alt="<?= $row[1] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row[1] ?></h2> </a> <?php } ?>PK �Z���e�. �. ajax/error_lognu �[��� [28-Nov-2024 14:32:16 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [03-Dec-2024 05:00:11 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [03-Dec-2024 05:12:39 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [06-Dec-2024 11:42:14 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [09-Dec-2024 17:49:38 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [10-Dec-2024 20:41:44 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [10-Dec-2024 20:41:44 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [10-Dec-2024 20:41:44 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [10-Dec-2024 21:53:23 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [12-Dec-2024 17:22:45 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [17-Dec-2024 06:27:07 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [17-Dec-2024 06:56:44 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [18-Dec-2024 20:13:23 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [18-Dec-2024 20:13:23 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [18-Dec-2024 20:13:23 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [19-Dec-2024 18:30:27 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [22-Dec-2024 19:40:18 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [25-Dec-2024 13:59:53 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [28-Dec-2024 02:29:25 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [30-Dec-2024 17:13:39 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [02-Jan-2025 02:28:21 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [02-Jan-2025 02:28:55 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [02-Jan-2025 02:28:55 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [02-Jan-2025 02:28:55 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [16-Jan-2025 02:33:40 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [18-Jan-2025 17:18:10 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [18-Jan-2025 18:25:03 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [20-Jan-2025 17:10:15 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [20-Jan-2025 17:10:15 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [20-Jan-2025 17:10:15 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [21-Jan-2025 18:37:59 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [22-Jan-2025 20:00:34 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [26-Jan-2025 01:38:52 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [01-Feb-2025 21:45:00 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [01-Feb-2025 21:45:02 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [01-Feb-2025 21:51:00 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [01-Feb-2025 21:51:00 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [01-Feb-2025 21:51:00 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [06-Feb-2025 13:23:29 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [06-Feb-2025 13:23:30 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [06-Feb-2025 13:24:06 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [06-Feb-2025 13:24:06 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [06-Feb-2025 13:24:06 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [09-Feb-2025 03:53:27 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [12-Feb-2025 12:31:24 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [12-Feb-2025 12:31:36 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [12-Feb-2025 12:31:36 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [12-Feb-2025 12:31:36 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [19-Feb-2025 12:59:04 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [19-Feb-2025 12:59:04 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [19-Feb-2025 12:59:04 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [20-Feb-2025 04:24:28 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [20-Feb-2025 04:34:36 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [26-Feb-2025 05:46:47 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [26-Feb-2025 05:46:47 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [26-Feb-2025 05:46:47 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [28-Feb-2025 13:57:19 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [28-Feb-2025 13:57:19 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [28-Feb-2025 13:57:19 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [28-Feb-2025 18:18:01 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [15-Mar-2025 21:40:34 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [19-Mar-2025 13:55:34 UTC] PHP Warning: Undefined array key "type" in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 8 [19-Mar-2025 13:55:34 UTC] PHP Warning: Undefined variable $query in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [19-Mar-2025 13:55:34 UTC] PHP Fatal error: Uncaught ValueError: mysqli_query(): Argument #2 ($query) cannot be empty in /home/flapvehx/streamnexus.online/includes/ajax/arc.php:17 Stack trace: #0 /home/flapvehx/streamnexus.online/includes/ajax/arc.php(17): mysqli_query() #1 {main} thrown in /home/flapvehx/streamnexus.online/includes/ajax/arc.php on line 17 [19-Mar-2025 15:24:13 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [02-Apr-2025 06:13:55 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [06-Apr-2025 21:47:45 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/sr.php on line 8 [07-Apr-2025 07:14:30 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [12-Apr-2025 11:41:29 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 [17-Apr-2025 06:36:03 UTC] PHP Warning: Undefined array key "name" in /home/flapvehx/streamnexus.online/includes/ajax/cd.php on line 8 PK �ZW.*X X ajax/arc.phpnu �[��� <?php require_once('../config.php'); $page = $_POST['page'] ?? 1; $limit = 30; $row = ($page - 1) * $limit; $type = $_POST['type']; // Ready Query by Category Name if ($type == "popular") { $query = "SELECT * from zon_games where game_played > 10 order by id desc limit $row,$limit"; } if ($type == "newest") { $query = "SELECT * from zon_games order by id desc limit $row,$limit"; } $run = mysqli_query($con, $query); $game = mysqli_fetch_all($run); foreach ($game as $row) { ?> <a href="<?php echo $site_url ?>single/<?= $row[0] ?>/<?php $text = $row[1]; $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[3] ?>" class="w-full h-full object-cover" alt="<?= $row[1] ?>"> <h2 style="z-index: 9;" class="text-white absolute bottom-0 left-0 px-2 py-2"><?= $row[1] ?></h2> </a> <?php } ?>PK �Z�F�*� � ajax/insert-likes.phpnu �[��� <?php require_once("../config.php"); require_once("../function_general.php"); // echo "<pre>"; // print_r($_POST); if (isset($_POST) && isset($_POST['game_id']) && isset($_POST['user_id'])) { $game_id = Secure_DATA($_POST['game_id']); $user_id = Secure_DATA($_POST['user_id']); $unlike = Secure_DATA($_POST['unlike']); if ($unlike == 'false') { if (Exist_Data("zon_likes", "user_id=$user_id && game_id=$game_id") == 0) { // if (mysqli_query($con, "delete from zon_likes where user_id=$user_id && game_id=$game_id")) { // echo "Deleted"; // } if (mysqli_query($con, "insert into zon_likes (user_id, game_id) values ($user_id, $game_id)")) { echo "Inserted"; } if (mysqli_query($con, "delete from zon_unlikes where user_id=$user_id && game_id=$game_id")) { // echo "Deleted"; } } else { if (mysqli_query($con, "delete from zon_likes where user_id=$user_id && game_id=$game_id")) { echo "Deleted"; } } } // else { // if (mysqli_query($con, "insert into zon_likes (user_id, game_id) values ($user_id, $game_id)")) { // echo "Inserted"; // } // } // if ($unlike == 'true') { // if (Exist_Data("zon_likes", "user_id=$user_id && game_id=$game_id") == 1) { // if (Exist_Data("zon_likes", "user_id=$user_id && game_id=$game_id") == 1) { // if (mysqli_query($con, "insert into zon_unlikes (user_id, game_id) values ($user_id, $game_id)")) { // echo "Success"; // if (mysqli_query($con, "delete from zon_likes where user_id=$user_id && game_id=$game_id")) { // // echo "Deleted"; // } // } // } else { // if (Exist_Data("zon_unlikes", "user_id=$user_id && game_id=$game_id") == 0) { // if (mysqli_query($con, "insert into zon_unlikes (user_id, game_id) values ($user_id, $game_id)")) { // echo "Inserted"; // } // } else { // if (mysqli_query($con, "delete from zon_unlikes where user_id=$user_id && game_id=$game_id")) { // echo "Deleted"; // } // } // } // } // } if ($unlike == 'true') { if (Exist_Data("zon_likes", "user_id=$user_id && game_id=$game_id") == 1) { if (Exist_Data("zon_unlikes", "user_id=$user_id && game_id=$game_id") == 0) { // if (mysqli_query($con, "delete from zon_likes where user_id=$user_id && game_id=$game_id")) { // echo "Deleted"; // } if (mysqli_query($con, "insert into zon_unlikes (user_id, game_id) values ($user_id, $game_id)")) { echo "Success"; } if (mysqli_query($con, "delete from zon_likes where user_id=$user_id && game_id=$game_id")) {} } else { if (mysqli_query($con, "delete from zon_unlikes where user_id=$user_id && game_id=$game_id")) { echo "Deleted"; } } } } // die(); // } } PK 曑ZZ��9! ! sidebar.phpnu �[��� <?php session_start(); if (!isset($_SESSION['admin-Loggedin']) && !isset($_SESSION['is_admin_Loggedin'])) { @header("location: ./login"); } include("config.php"); ?> <div class="sidebar dark:bg-zinc-900 bg-[white] sticky w-64 h-[100vh]"> <style> .sidebar { position: sticky; top: 0; } </style> <div class="logo px-4 py-6"> <a href="<?php echo $site_url ?>"> <h3 class="fw-bold text-2xl dark:text-gray-100 uppercase text-gray-600 "><?php echo Zon_Config('site_name') ?></h3> </a> </div> <ul class="list px-4 mt-2"> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="index"><span class="bi-speedometer2 mr-2"></span> Dashboard</a></li> <li class="text-muted text-[10px] mt-3 mb-3 uppercase">ARCADE</li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="games"><span class="bi-controller mr-2"></span> Games</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="categories"><span class="bi-columns-gap mr-2"></span> Categories</a></li> <li class="text-muted text-[10px] mt-3 mb-3 letter-space-1 uppercase">community</li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="users"><span class="bi-person mr-2"></span> Users</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="comments"><span class="bi-person mr-2"></span> Comments</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="pages"><span class="bi-person mr-2"></span> Pages</a></li> <li class="text-muted text-[10px] mt-3 mb-3 uppercase">settings</li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="tools"><span class="bi-tools mr-2"></span> Tools</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="advertisement"><span class="bi-tv mr-2"></span> Advertisement</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="settings"><span class="bi-gear mr-2"></span> Settings</a></li> <li class="list-style-none"><a class="text-docoration-none text-gray-500 dark:text-gray-400 py-2 block text-[13px]" href="logout"><span class="bi-gear mr-2"></span> logout</a></li> </ul> </div>PK �ZKw� � header.phpnu �[��� PK �ZwwEP P � functions.phpnu �[��� PK �Z#A�5 5 � config.phpnu �[��� PK �Z���ĺ � � function_general.phpnu �[��� PK �Z��y[� � �) footer.phpnu �[��� PK �Z���ff) f) �4 main-h.phpnu �[��� PK �Z��`ތ � �^ error_lognu �[��� PK �ZCQw�� � av ajax/cd.phpnu �[��� PK �Z���(� � l{ ajax/insert-played-views.phpnu �[��� PK �Z�A�� � �} ajax/sr.phpnu �[��� PK �Z���e�. �. Ƃ ajax/error_lognu �[��� PK �ZW.*X X � ajax/arc.phpnu �[��� PK �Z�F�*� � �� ajax/insert-likes.phpnu �[��� PK 曑ZZ��9! ! ^� sidebar.phpnu �[��� PK > ��
| ver. 1.4 |
Github
|
.
| PHP 8.3.19 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.06 |
proxy
|
phpinfo
|
ÐаÑтройка