View file index.php

File size: 871B
<?php
include 'inc/db.php';
include 'inc/1.php';
//echo rekl(1);
if ($web==0){
include 'inc/menu.php';
}
else
{
if ($user)$nick=$user['name'];
else
$nick='гость';
echo '<div class=\'msg\'><center><font color=\'white\'><b>Здравствуйте, '.$nick.'!</b>';
echo '</font></center></div>';
div('p1');
$q=mysql_query("SELECT `id`, `name`, `user`, `time` FROM `forum` ORDER BY `time` DESC LIMIT 11");
$b=0;
while ($f=mysql_fetch_assoc($q)){
$ank=gus($f['user']);
echo '<div class="p0">'.im($ank['id']).' <a href=\'ank.php?id='.$ank['id'].'\'>'.$ank['name'].'</a> '.on($ank['id']).'<br><a href=\'theme.php?id='.$f['id'].'\'><b>'.out($f['name']).'</b></a> ['.vremja($f['time']).']</div>';
$b++;
}
if (mysql_num_rows($q)==0)echo '<div class=\'input\'>Нет новых тем на форуме.</div>';
nodiv();
}
include 'inc/foot.php';
?>