View file gb_dro/index.php

File size: 2.08Kb
<?php
/* GB By Dro http://kywap.org.ru/ */
require ('inc/sets.php');
if (isset($_GET['pass'])) { $pass = $_GET['pass']; } else { $pass = ''; } 

$head = '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html>
<head>
<title>Гостевaя книга | '.$site_name.'</title>
<meta http-equiv="Pragma" content="no-cache"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="title">Гостевая книга</div>';
$foot = '<div class="navigation">
&#187; <a href="send.php">Написать сообщение</a><br/>
&#171; <a href="http://'.$_SERVER['HTTP_HOST'].'/">На главную</a>
</div>
<div class="footer">&#169; '.$site_name.'</div>
</body>
</html>';

$array = file('messages.dat');
$count = count($array);
$list  = $amount;

if (empty($_GET['page'])) {
    $page = 1;
} else {
    $page = (int) $_GET['page'];
}

$j = ($count-1)-(($page-1)*$list);
$i = $j-$list;
echo $head;
for(; $i<$j && $j>=0; $j--) {
$up = $j + 1;
$text = explode("|",$array[$j]);
echo '<div class="nick"><b>'.$text[0].'</b><br/>['.$text[3].']</div>';
echo '<div class="info">';
	if($text[1] != '') { echo 'Маил: '.$text[1].'<br/>'; } else { echo 'Маил: Не указан<br/>'; }
	if($text[2] != '') { echo 'Сайт: <a href="'.$text[2].'/">'.$text[2].'</a>'; } else { echo 'Сайт: Не указан'; }
echo '</div>';
echo '<div class="mess">'.$text[4].'</div>';
	if($text[5] != "\r\n") { echo '<div class="answ">Админ: '.$text[5].'</div>'; }
if ($pass == $adminpass) {
	echo '<a href="del.php?nom='.$up.'&amp;pass='.$pass.'">Удалить</a> <a href="edit_form.php?nom='.$up.'&amp;pass='.$pass.'">Редактировать</a>';
	}
}
echo '<div class="pages">Сообщений: '.$count.'<br/>';
echo 'Страницы: '."\n";
$all = ceil($count/$list);
for ($i=1;$i<=$all;$i++) {
    if ($page==$i) {
        echo '['.$i.']'."\n";
    } else {
        echo '<a href="'.$_SERVER['PHP_SELF'].'?page='.$i.'">'.$i.'</a>'."\n";
    }
}
echo '</div>';
echo $foot;
?>