File size: 1.06Kb
<?
include_once 'sys/inc/start.php';
include_once 'sys/inc/compress.php';
include_once 'sys/inc/sess.php';
include_once 'sys/inc/home.php';
include_once 'sys/inc/settings.php';
include_once 'sys/inc/db_connect.php';
include_once 'sys/inc/ipua.php';
include_once 'sys/inc/fnc.php';
include_once 'sys/inc/user.php';
$set['title']='Список смайлов';
include_once 'sys/inc/thead.php';
title();
aut();
$k_post = mysql_result(query("SELECT COUNT(*) FROM `smiles`"),0);
$k_page = k_page($k_post,$set['p_str']);
$page = page($k_page);
$start = $set['p_str']*$page-$set['p_str'];
if($k_post==0)msg( 'Нет смайлов');
echo '<div class="p_m">Всего смайлов : ('. $k_post.')</div>';
$smiles=query("SELECT * FROM `smiles` LIMIT $start, $set[p_str]");
while($post = mysql_fetch_array($smiles))echo '<div class="p_m">
<img src="/style/smiles/'.$post['name'].'" alt="'.$post['name'].'" title="'.$post['name'].'"/>
<> '.$post['zamena'].'</div>';
if($k_page>1)str('?',$k_page,$page);
include_once 'sys/inc/tfoot.php';
?>