File size: 4.69Kb
<?php
############################################################
## ********* WAP-MOTORS ******* ## ********* Sky CMS ******** ##
## Made by : VANTUZ ## Modification : LondoN ##
## E-mail : [email protected] ## E-mail : [email protected] ##
## Site : http://pizdec.ru ## Site : http://inter-sky.net ##
## WAP-Site : http://visavi.net ## ##
## ICQ : 36-44-66 ## ICQ : 355-98-00-79 ##
## ## ##
## ВЫ НЕ ИМЕЕТЕ ПРАВА ВНОСИТЬ ИЗМЕНЕНИЯ В КОД СКРИПТА ##
#############################################################
## СКРИПТЫ, ДИЗАЙН ПОД ЗАКАЗ !!! ICQ : 355-98-00-79 http://inter-sky.net Дмитрий LONDON
#############################################################
/*
ВЫПОЛНЯЮ ЗАКАЗЫ НА ЭКСКЛЮЗИВНЫЕ СКРИПТЫ ДЛЯ ВАШЕГО САЙТА !!!
Возникли проблемы или найдены баги? ICQ : 355-98-00-79 http://inter-sky.net Дмитрий LONDON
Всегда рад вашим отзывам, пожеланиям, предложениям или простой благодарности!
Если не жалко, то прошу помочь развитию проекта и на оплату Интернета:
Webmoney Wmid: 180910508615
Webmoney WMZ: 257351459957
Webmoney WMR: 183110384655
Webmoney WME: 681446621238
Искренне, Ваш LONDON !!!
*/
################################################################
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../template/isset.php";
echo '<html>
<head>
<title>Выбор смайликов</title>
</head>';
echo'<table cellpadding="20" cellspacing="0" border="0" width="250" border="0"><tr><td valign="top">';
$dir = opendir (BASEDIR."images/smiles2");
while ($file = readdir ($dir)){
if(ereg ("\.gif$", $file)){
$a[]=$file;
}}
closedir ($dir);
sort($a);
$total = count($a);
$start = (int)$_GET['start'];
if($start < 0 || $start > $total){$start = 0;}
if ($total < $start + $config_smilelist){ $end = $total; }
else {$end = $start + $config_smilelist; }
for ($i = $start; $i < $end; $i++){
$smkod=str_replace(".gif","",$a[$i]);
echo'<center><table cellpadding="0" cellspacing="0" border="0">';
echo'<tr><td width="50%" align="center">';
echo'<img src="'.BASEDIR.'images/smiles2/'.$a[$i].'" alt="">';
echo'</td>';
echo'<td align="right">';
echo ' <input type="text" name="sm" value=" :'.$smkod.'" size="10" />';
echo'</td>';
echo'</tr>';
echo'</table><br></center>';
}
echo'<hr><b>';
# постраничный вывод
if ($start != 0) {echo '<a href="smiles2.php?start='.($start - $config_smilelist).'&'.SID.'"><-Назад </a> ';}else{echo'<-Назад ';}
echo'|';
if ($total > $start + $config_smilelist) {echo ' <a href="smiles2.php?start='.($start + $config_smilelist).'&'.SID.'"> Далее-></a>';}else{echo' Далее->';}
$a=count($a);
$ba=ceil($a/$config_smilelist);
$ba2=floor(($a-1)/$config_smilelist)*$config_smilelist;
$asd=$start-($config_smilelist*4);
$asd2=$start+($config_smilelist*5);
if($asd<$a && $asd>0){echo ' <a href="smiles2.php?start=0&'.SID.'">1</a> ... ';}
for($i=$asd; $i<$asd2;)
{
if($i<$a && $i>=0){
$ii=floor(1+$i/$config_smilelist);
if ($start==$i) {
echo ' <b>'.$ii.'</b>';
}
else {
echo ' <a href="smiles2.php?start='.$i.'&'.SID.'">'.$ii.'</a>';
}}
$i=$i+$config_smilelist;}
if($asd2<$a){echo ' ... <a href="smiles2.php?start='.$ba2.'&'.SID.'">'.$ba.'</a>';}
echo '<br><br>Всего доступно cмайлов: <b>'.(int)$total.'</b>';
echo'</td></tr></table>';
?>