<?php session_start();
/**********************************************************************
* Copyright notice Ja2BU 1.1.
*
* (c) 2011 Predrag Rukavina - admin[at]phpform[dot]net
* All rights reserved
*
* This script is part of the Ja2BU project.
* The Ja2BU 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 = $_GET['id'];
$brecordSet = &$conn->Execute('SELECT * FROM users WHERE username = ? LIMIT 1',array($id));
if(!$brecordSet)
print $conn->ErrorMsg();
else
while(!$brecordSet->EOF) {
$bval[] = $brecordSet->fields;
$brecordSet->MoveNext();
}
/**
* get_db_results()
*
* @return
*/
function get_db_results() {
$id = $_GET['id'];
global $conn;
$_query = sprintf('SELECT * FROM article WHERE buser = ? ORDER BY blogid DESC LIMIT %d,%d',SmartyPaginate::getCurrentIndex
(),SmartyPaginate::getLimit());
$crecordSet = $conn->Execute($_query,array($id));
if(!$crecordSet)
print $conn->ErrorMsg();
else
while(!$crecordSet->EOF) {
$_data[] = $crecordSet->GetRowAssoc(false);
$crecordSet->MoveNext();
}
$_query = "SELECT FOUND_ROWS() as total";
$drecordSet = $conn->Execute($_query);
if(!$drecordSet)
print $conn->ErrorMsg();
else
$_row = $drecordSet->GetRowAssoc();
$total = $drecordSet->fields['total'];
SmartyPaginate::setTotal($total);
return @$_data;
$crecordSet->Close();
$drecordSet->Close();
}
require ('libs/SmartyPaginate.class.php');
SmartyPaginate::connect();
SmartyPaginate::setLimit(12);
SmartyPaginate::setUrl('profile.php');
include('session.php');
$smarty->caching = $caching;
$smarty->assign('results',get_db_results());
SmartyPaginate::assign($smarty);
$smarty->assign('profile',@$bval);
@$next = (int)$_GET['next'];
$smarty->display('profile.php',$next);
$smarty->display('footer.php');
$brecordSet->Close();
$conn->Close();
######################################
##profile.php 1.1.##
######################################
?>