<?php
/**
* XS2: Обработчик поисковой формы
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @package XS2-MODCOM
* @subpackage proc-search
* @version 1.XX
*/
$Query = $_GET['q'];
$SType = $_GET['t'];
$RsNum = $_GET['r'];
$SPage = $_GET['p'];
$CatId = $_GET['c'];
$res = xs2u_Search($Query, $SPage, $CatId, $SType, $RsNum);
$_HTML->assign('res', $res);
?>
|
|