View file gb/smile.php

File size: 807B
<?php
require 'incs/header.php';
include 'incs/ini.php';

$n=intval(@$_GET['n']);
include"fig/head.php";
echo '<title>Смайлы</title>';
echo '<div class="hu2"><div class="hu1">';
require('incs/smiles.php');
$cnt=count($sstr);
for($c=0;$c<7;$c++){
 if($c+$n>$cnt-1) break;
 print $simg[$c+$n].' '.$sstr[$c+$n].'<center><span style="color: #65dd16;">******</span></center>';
}
print '</div><p>';

$path = 'sm';
$d=@opendir($path);
$s=0;
while($e=readdir($d)){
if(is_file($path."/".$e)) $s++;
}
echo 'Всего смайлов: '.$s.'<br />';

$n=$n+$c;
if($n<$cnt) print('&#8594;<a href="smile.php?n='.$n.'&amp;'.SID.'">Далее</a><br />');
print('<a href="index.php'.psid().'">&#8592;B гoстeвую</a></p>');
include 'fig/nizz.php';
$onl = new online;
$onl->add();
?>