<?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');
$id = (int)$_GET['id'];
$id = $conn->addq($id);
$arecordSet = &$conn->Execute('SELECT * FROM comment WHERE commid = ? ORDER BY commid DESC LIMIT 1', array($id));
if($arecordSet) {
if($arecordSet->fields == 0) {
include 'notfound.php';
$arecordSet->Close();
$conn->Close();
die();
}
}
if(!$arecordSet)
print $conn->ErrorMsg();
else
while(!$arecordSet->EOF) {
$acval[] = $arecordSet->fields;
$arecordSet->MoveNext();
}
function get_db_results() {
$id = $_GET['id'];
global $conn;
$id = $conn->addq($id);
$_query = sprintf('SELECT SQL_CALC_FOUND_ROWS * FROM reviews WHERE comrev = ? ORDER by revid ASC LIMIT %d,%d',
SmartyPaginate::getCurrentIndex(),SmartyPaginate::getLimit());
$brecordSet = $conn->Execute($_query, array($id));
if(!$brecordSet)
print $conn->ErrorMsg();
else
while(!$brecordSet->EOF) {
$_data[] = $brecordSet->GetRowAssoc(false);
$brecordSet->MoveNext();
}
$_query = "SELECT FOUND_ROWS() as total";
$crecordSet = $conn->Execute($_query);
if(!$crecordSet)
print $conn->ErrorMsg();
else
$_row = $crecordSet->GetRowAssoc();
$total = $crecordSet->fields['total'];
SmartyPaginate::setTotal($total);
return @$_data;
$brecordSet->Close();
$crecordSet->Close();
}
require ('libs/SmartyPaginate.class.php');
SmartyPaginate::connect();
SmartyPaginate::setLimit(12);
$new_path = $sitepath . "/post.php";
SmartyPaginate::setUrl($new_path);
$smarty->caching = $caching;
$smarty->assign('results',get_db_results());
SmartyPaginate::assign($smarty);
if(@$_SESSION["view"] == $id.$_SERVER['SERVER_NAME']) {
} else {
$sql = $conn->Prepare('UPDATE comment SET views = views + ? WHERE commid = ?');
if($conn->Execute($sql,array(1,$id)) === false) {
print '<br /><div id="error">error inserting[1]: '.$conn->ErrorMsg().'</div><br />';
}
$_SESSION["view"] = $id.$_SERVER['SERVER_NAME'];
}
$iconfig['date'] = '%I:%M %p';
$iconfig['time'] = '%H:%M:%S';
$smarty->assign('iconfig',$iconfig);
$smarty->assign('today',strtotime('+ 1 hours'));
$smarty->assign('comment',$acval);
$id = (int)$_GET['id'];
@$next = (int)$_GET['next'];
$cid = $id.$next;
$smarty->display('post.php', $cid);
$smarty->display('footer.php');
$arecordSet->Close();
$conn->Close();
##############################
# post.php version 1.1.6.#
##############################
?>