Просмотр файла smile.php

Размер файла: 881B
<?
require_once('inc/config.php');
echo '<a href="wiev.php?id='.intval($_GET['id']).'">Назад<a><br>';
$dir=opendir("smile/");

while($file=readdir($dir)){
$f='';
if($file=="." or $file==".." or $file=="index.php"){continue;}
$fx=str_replace('.gif','',$file);
$dir1=opendir("smile/");
while($file1=readdir($dir1)){$f[]=$file1;}
$count=(count($f)-3);
$filez[]= "<img src='smile/$file' alt=':$fx:'>   :$fx:</div>";
}
closedir($dir);
if(isset($_GET['page'])){
$page=abs(intval($_GET['page']));
}else{$page="";}
for($i=$page;$i<($page+8);$i++){
echo ''.$filez[$i].'<br/>';
}
if($page==0){
unset($_GET['page']);
}
if(isset($_GET['page'])){
echo '<a href="?page='.($page-5).'&id='.intval($_GET['id']).'"><<< </a> ||';

}
if($page<$count-5){
echo '<a href="?page='.($page+5).'&id='.intval($_GET['id']).'">>>> </a>';
if($page=$count){
}
exit;
}


require_once('../inc/end.php');
?>