Размер файла: 3.03Kb
<?php
require_once ("../includes/start.php");
require_once ("../includes/functions.php");
require_once ("../includes/header.php");
include_once ("../themes/".$config['themes']."/verh.dat");
if (isset($_GET['start'])){$start = (int)$_GET['start'];} else {$start = 0;}
show_title('Гостевая книга');
echo'<a href="#form">Написать</a> / ';
echo'<a href="index.php?rand='.mt_rand(100,999).'">Обновить</a>';
if (is_admin(array(101,102,103,105))){
echo' / <a href="'.ADMINDIR.'book.php?start='.$start.'">Управление</a>';
}
echo'<hr>';
$file = file(DATADIR."book.dat");
$file = array_reverse($file);
$total = count($file);
if ($total>0){
if ($start < 0 || $start >= $total){$start = 0;}
if ($total < $start + $config['bookpost']){ $end = $total; }
else {$end = $start + $config['bookpost']; }
for ($i = $start; $i < $end; $i++){
$data = explode("|",$file[$i]);
echo'<div class="b">';
echo user_avatars($data[1]);
if ($data[1]==$config['guestsuser']){
echo'<b>'.$data[1].'</b> ';
} else {
echo'<b><a href="../pages/anketa.php?uz='.$data[1].'">'.nickname($data[1]).'</a></b> '.user_title($data[1]).user_online($data[1]).' ';
}
echo'<small>('.date_fixed($data[3]).')</small></div>';
echo'<div>'.bb_code($data[0]).'<br>';
if ($data[1]=="Oleg"){}
else{echo'<span style="color:#444; font-size:0.8em">('.$data[4].', ip '. $data[5].')</span>';
}
if ($data[6]!=""){ echo'<br><span style="color:darkred">Ответ:</span> '.$data[6].'';}
if ($data[7]!=""){ echo'<br><span style="color:darkred">Ред.: '.nickname($data[7]).' ('.date_fixed($data[2]).')</span>';}
echo'</div>';
}
page_jumpnavigation('index.php?', $config['bookpost'], $start, $total);
page_strnavigation('index.php?', $config['bookpost'], $start, $total);
} else {show_error('Сообщений нет...');}
if (is_user()){
echo'<br><div class="form" id="form">';
echo'<form action="add.php?uid='.$_SESSION['token'].'" method="post">';
echo'Сообщение:<br>';
echo'<textarea cols="25" rows="3" name="msg"></textarea><br>';
echo'<input type="submit" value="Написать"></form></div>';
} elseif($config['bookadds']==1){
echo'<br><div class="form" id="form">';
echo'<form action="add.php?uid='.$_SESSION['token'].'" method="post">';
echo'Сообщение:<br>';
echo'<textarea cols="25" rows="3" name="msg"></textarea><br>';
echo'Проверочный код: ';
if ($config['protectimg']==1){
echo'<br><img onclick="this.src=\'/gallery/protect.php?\'+Math.random()" style="cursor: pointer;" src="/gallery/protect.php" alt=""><br>';
} else {
echo'<b>'.$_SESSION['protect'].'</b><br>';
}
echo'<input name="provkod" size="6" maxlength="6"> ';
echo'<br><input type="submit" value="Написать"></form></div>';
} else {show_login('');}
echo'<a href="../pages/pravila.php">Правила</a> / ';
echo'<a href="../pages/smiles.php">Смайлы</a> / ';
echo'<a href="../pages/tegi.php">Теги</a><br><br>';
echo'<img src="'.BASEDIR.'images/home.svg" alt="+">
<a href="../index.php">Главъ</a>';
include_once ("../themes/".$config['themes']."/niz.dat");
?>