<?php session_start();
/* * ********************************************************************
* Copyright notice PHP Blogger 1.2.
*
* (c) 2011 Predrag Rukavina - admin[at]phpblogger[dot]org
* All rights reserved
*
* This script is part of the PHP Blogger project.
* The PHP Blogger project is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* This copyright notice MUST appear in all copies of the script!
* ********************************************************************** */
include ('settings.php');
require_once ('languages/lang_english.php');
function get_db_results() {
$cid = "#" . $_GET['q'];
global $conn;
$_query = sprintf('SELECT SQL_CALC_FOUND_ROWS * FROM comment WHERE MATCH (amess) AGAINST ("?" IN BOOLEAN MODE) ORDER by commid desc LIMIT %d,%d',
SmartyPaginate::getCurrentIndex(),SmartyPaginate::getLimit());
$arecordSet = $conn->Execute($_query,array($cid));
if(!$arecordSet)
print $conn->ErrorMsg();
else
while(!$arecordSet->EOF) {
$_data[] = $arecordSet->GetRowAssoc(false);
$arecordSet->MoveNext();
}
$_query = "SELECT FOUND_ROWS() as total";
$brecordSet = $conn->Execute($_query);
if(!$brecordSet)
print $conn->ErrorMsg();
else
$_row = $brecordSet->GetRowAssoc();
$total = $brecordSet->fields['total'];
SmartyPaginate::setTotal($total);
return @$_data;
$arecordSet->Close();
$brecordSet->Close();
}
require ('libs/SmartyPaginate.class.php');
SmartyPaginate::connect();
SmartyPaginate::setLimit(12);
$new_path = $sitepath . "/tags.php";
SmartyPaginate::setUrl($new_path);
$smarty->assign('results',get_db_results());
SmartyPaginate::assign($smarty);
$crecordSet = &$conn->Execute("SELECT * FROM reviews LIMIT 70");
if(!$crecordSet)
print $conn->ErrorMsg();
else
while(!$crecordSet->EOF) {
$cval[] = $crecordSet->fields;
$crecordSet->MoveNext();
}
$iconfig['date'] = '%I:%M %p';
$iconfig['time'] = '%H:%M:%S';
$smarty->assign('iconfig',$iconfig);
$smarty->assign('today',strtotime('+ 1 hours'));
$smarty->assign('reviews',@$cval);
$next = @$_GET['next'];
$cid = $_GET['q'];
$smarty->assign('cid',$cid);
$incid = $cid . @$next;
$smarty->display('tags.php', $incid);
SmartyPaginate::reset();
$smarty->display('footer.php');
$crecordSet->Close();
$conn->Close();
##############################
# tags.php version 1.1.6.#
##############################
?>