<?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');
/**
* get_db_results()
*
* @return
*/
/**
* get_db_results()
*
* @return
*/
function get_db_results() {
global $conn;
$_query = sprintf('SELECT SQL_CALC_FOUND_ROWS * FROM comment ORDER BY commid DESC LIMIT %d,%d',
SmartyPaginate::getCurrentIndex(),SmartyPaginate::getLimit());
$arecordSet = $conn->Execute($_query);
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);
SmartyPaginate::setUrl('');
$smarty->assign('results',get_db_results());
SmartyPaginate::assign($smarty);
$crecordSet = &$conn->Execute("SELECT * FROM reviews ORDER BY revid ASC LIMIT 70");
if(!$crecordSet)
print $conn->ErrorMsg();
else
while(!$crecordSet->EOF) {
$cval[] = $crecordSet->fields;
$crecordSet->MoveNext();
}
$drecordSet = &$conn->Execute('SELECT * , DATE_FORMAT(lastime, "Y%m%d%H%i%")AS lastime FROM users ORDER by lastime desc LIMIT 12');
if(!$drecordSet)
print $conn->ErrorMsg();
else
while(!$drecordSet->EOF) {
$dval[] = $drecordSet->fields;
$drecordSet->MoveNext();
}
$erecordSet = &$conn->Execute('SELECT * from catags ORDER by nofhash desc LIMIT 22');
if(!$erecordSet)
print $conn->ErrorMsg();
else
while(!$erecordSet->EOF) {
$eval[] = $erecordSet->fields;
$erecordSet->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);
$smarty->assign('users',@$dval);
$smarty->assign('catags',@$eval);
@$next = (int)$_GET['next'];
$smarty->display('main.php',$next);
SmartyPaginate::reset();
$smarty->display('footer.php');
$crecordSet->Close();
$drecordSet->Close();
$erecordSet->Close();
$conn->Close();
##############################
# index.php version 1.1.6.#
##############################
?>