Вход Регистрация
Файл: page/shop/free.php
Строк: 53
<?php
$title 
'Бесплатное';
require_once(
$_SERVER["DOCUMENT_ROOT"]."/inc/head.php");
if (
$sys['modules']['shop'] == 1) {

    echo 
'<div class="title">Бесплатное</div>
    <div class="menu">
    <form action="" method="GET">
    <input type="text" name="search" value="'
.$search.'">
    <input type="submit" value="Поиск">
    </form></div>'
;

    
$keywords $search preg_replace("/[s,]+/""|"$search) : RS_ALL_CHARS;

    
$stmt_num $connect->prepare("select count(*) from `shop` where `status` = '1' and `free` = '1' and `time` <= :time and (`name` rlike :keywords or `text` rlike :keywords or `tags` rlike :keywords)");
    
$stmt_num->bindValue(':time'time(), PDO::PARAM_INT);
    
$stmt_num->bindValue(':keywords'$keywords);
    
$stmt_num->execute();
    
$count_res $stmt_num->fetchColumn();

    if (
$count_res == 0) {
        echo 
'<div class="menu">Товаров нет!</div>';
    } else {

        
$page = new Pagination($count_res10);

        if (
$search) {

            
$page->setLink('?search=' $search '&');

            echo 
'<div class="menu">Найдено по запросу: '.$count_res.'</div>';

        }

        
$data $connect->prepare("select * from `shop` where `status` = '1' and `free` = '1' and `time` <= :time and (`name` rlike :keywords or `text` rlike :keywords or `tags` rlike :keywords) order by `id` desc limit :start, 10");
        
$data->bindValue(':time'time(), PDO::PARAM_INT);
        
$data->bindValue(':keywords'$keywords);
        
$data->bindValue(':start'$page->startPDO::PARAM_INT);
        
$data->execute();
        
$sql $data->fetchAll();

        foreach (
$sql as $row) {

            echo 
linkShop($row);

        }

        
$page->navigation();

    }

    if (!isset(
$active))
        echo 
'<div class="menu"><div class="information">Авторизуйтесь, чтобы была возможность скачивать файлы.</div></div>';

    echo 
'<div class="forlink"><a href="/shop" class="links"><img src="/img/shop.png" alt="">Магазин скриптов</a></div>';

} else {
    
header('Location: /');
}

require(
$_SERVER["DOCUMENT_ROOT"]."/inc/foot.php");
?>
Онлайн: 0
Реклама