<?php
/**********************************************************************
* Copyright notice PHP Enter 4.1.6.
*
* (c) 2011 Predrag Rukavina - admin[at]phpenter[dot]net
* All rights reserved
*
* This script is part of the PHP Enter project.
* The PHP Enter 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');
error_reporting(E_ERROR | E_WARNING | E_PARSE);
$arecordSet =&$conn->Execute('SELECT * FROM categori ORDER BY name ASC');
if (!$arecordSet)
print $conn->ErrorMsg();
else
while (!$arecordSet->EOF) {
if ($arecordSet->fields['cord'] == 0) {
$aval[] = $arecordSet->fields;
} else {
$nval[] = $arecordSet->fields;
}
$arecordSet->MoveNext();
}
/**
* get_db_results()
*
* @return
*/
function get_db_results() {
$id = (int)$_GET['id'];
global $conn;
$id = $conn->addq($id);
$_query = sprintf('SELECT SQL_CALC_FOUND_ROWS * FROM newser where idblog = ? ORDER BY blogid DESC 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);
SmartyPaginate::setUrl('categories.php');
$smarty->caching = $caching;
$smarty->assign('results',get_db_results());
SmartyPaginate::assign($smarty);
$drecordSet = &$conn->Execute('SELECT * FROM reviews ORDER BY revid DESC LIMIT 2,4');
if(!$drecordSet)
print $conn->ErrorMsg();
else
while(!$drecordSet->EOF) {
$dval[] = $drecordSet->fields;
$drecordSet->MoveNext();
}
$erecordSet = &$conn->Execute('SELECT * FROM onewse ORDER BY oids DESC LIMIT 6');
if(!$erecordSet)
print $conn->ErrorMsg();
else
while(!$erecordSet->EOF) {
$eval[] = $erecordSet->fields;
$erecordSet->MoveNext();
}
$smarty->assign('categori',$aval);
$smarty->assign('subcat', @$nval);
@$smarty->assign('reviews',$dval);
$smarty->assign('onewse',$eval);
$id = (int)$_GET['id'];
@$next = (int)$_GET['next'];
$cid = $id.$next;
$smarty->display('categories.php',$cid);
$smarty->display('footer.php');
$arecordSet->Close();
$drecordSet->Close();
$erecordSet->Close();
$conn->Close();
######################################
##categories.php 4.1.4.##
######################################
?>