Файл: tsmile.php
Строк: 18
<?php
define('PROTECTOR', 1);
$textl='Справка по смайлам';
include('files/path.php');
include($path.'files/db.php');
include($path.'files/auth.php');
include($path.'files/func.php');
include($path.'files/core.php');
include($path.'files/head.php');
include($path.'files/zag.php');
$dir = opendir ("pic/smiles");
while ($file = readdir ($dir))
{ if (ereg (".gif$", "$file"))
{$a[]=$file;}}
closedir ($dir);
sort($a);
$total = count($a);
if (empty($_GET['start'])) $start = 0;
else $start = $_GET['start'];
if ($total < $start + 10){ $end = $total; }
else {$end = $start + 10; }
for ($i = $start; $i < $end; $i++){
$smkod=str_replace(".gif","",$a[$i]);
echo '<img src="pic/smiles/'.$a[$i].'" alt="">';
echo '- :'.$smkod.'<br>';
}
$a=count($a);
$ba=ceil($a/10);
$ba2=floor(($a-1)/10)*10;
echo'<br/>Страницы:';
$asd=$start-(10*4);
$asd2=$start+(10*5);
if($asd<$a && $asd>0){echo " <a href="tsmile.php?start=0&id=">1</a> ... ";}
for($i=$asd; $i<$asd2;)
{
if($i<$a && $i>=0){
$ii=floor(1+$i/10);
if ($start==$i) {
echo ' <b>'.$ii.'</b>';
}
else {
echo " <a href="tsmile.php?start=$i&id=">$ii</a>";
}}
$i=$i+10;}
if($asd2<$a){echo " ... <a href="tsmile.php?start=$ba2">$ba</a>";}
echo "<br/><a href="tchat.php?">Назад</a>";
include($path.'files/down.php');
?>