Просмотр файла forum/forum/mypost.php

Размер файла: 2.97Kb
<?php
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"../themes/$config_themes/index.php";
include_once"../template/isset.php";
require_once"../template/db.php";
include_once"fnc.php";
if ($provpar == md5($_SESSION['par']) && $provlog == $_SESSION['log']) {
echo "<img src='".$config_home."/images/img/partners.gif' alt=''>Мои сообщения<br><br>\n";

function pages($start, $total, $onpage, $config_home){
if ($start != 0) echo '<a href="'.$config_home.'/forum/mypost/'.($start - $onpage).'">&lt;-Назад</a> ';
else echo '&lt;-Назад';
echo ' | ';
if ($total > $start + $onpage)
echo ' <a href="'.$config_home.'/forum/mypost/'.($start + $onpage).'">Далее-&gt;</a>';
else echo 'Далее-&gt;';
if($total>0){
$ba = ceil($total/$onpage);
$ba2 = $ba*$onpage-$onpage;
echo '<br/>Страницы:';
$asd = $start-($onpage*3);
$asd2 = $start+($onpage*4);
if($asd<$total && $asd>0) echo ' <a href="'.$config_home.'/forum/mypost/0">1</a> ... ';
for($i=$asd; $i<$asd2;){
if($i<$total && $i>=0){
$ii = floor(1+$i/$onpage);
if ($start==$i) echo ' <b>['.$ii.']</b>';
else echo ' <a href="'.$config_home.'/forum/mypost/'.$i.'">'.$ii.'</a>';}
$i=$i+$onpage;}
if($asd2<$total) echo ' ... <a href="'.$config_home.'/forum/mypost/'.$ba2.'">'.$ba.'</a>';}}

$total = mysql_result(mysql_query("SELECT COUNT(*) FROM `posts` WHERE `author` = '$log'"),0);

$start = isset($_GET['start']) ? abs((int)$_GET['start']) : 0;
if($start > $total) $start = 0;
if ($total < $start + 10) $end = $total;
else $end = $start + 10;

$tops = mysql_query("SELECT * FROM `posts` WHERE `author` = '$log' ORDER BY `id` DESC LIMIT $start, 10");
if(mysql_num_rows($tops) != '0'){
while($top = mysql_fetch_array($tops)){
$themes = mysql_query("SELECT * FROM `theme` WHERE `id` = '".$top['theme']."'");
$theme = mysql_fetch_array($themes);

echo "<div><img src='".$config_home."/forum/img/t.gif' alt=''> <a href='".$config_home."/forum/posts/".$theme['id']."'><b>".$theme['name']." </b></a><br>";
echo antimat(bb_code(check2($top['msg'])))."<br>\n";
echo "Написал: ".$top['author']." (".date_fixed($top['time']).")<br>\n";
echo "<small><font color=#CC00CC>(".$top['brow'].", ".$top['ip'].")</font></small>\n";
echo '<hr></div>';
}}else{ echo "<br> <img src='".$config_home."/images/img/close.gif' alt=''> Сообщений еще нет!<br><br><hr>\n";}

if ($total > 10){pages($start, $total, 10, $config_home); echo'<hr>';}

echo ": <a href='".$config_home."/forum/'>К форумам</a><br>"; 
echo ":: <a href='".$config_home."'>На главную</a>"; 
} else {header ("Location: ".$config_home."/forum/");} 
include_once"../themes/$config_themes/foot.php";
?>