Размер файла: 2.38Kb
<?php
$mt=microtime();
require('db.php');
require('nast.php');
require('shapka.php');
print $beginpage;
@session_start();
$s=htmlspecialchars(session_id());
/////////////////
$ontime=time()-350;
$res_onl=mysql_query("SELECT place,`nick` from `user` WHERE `ldate`>$ontime");//Онлайн
$count1=mysql_num_rows($res_onl);
for($i=0; $i<$count1; $i++)
{
$place=mysql_fetch_assoc($res_onl);
@$oncount[$place['place']]++;
if(!@$inroom[$place['place']])
@$inroom[$place['place']]="<a href=\"anketa.php?str=$str&ses=$s&login=$place[nick]\">$place[nick]</a>";
else
@$inroom[$place['place']].=','."<a href=\"anketa.php?str=$str&ses=$s&login=$place[nick]\">$place[nick]</a>";
}
if(!isset($oncount[9999]))
$counton=0;
else
$counton=$oncount[9999];
$inr=@$inroom[9999].'<br />';
if(!@$_SESSION['enter'])
print "Прихожая: [$counton]<br />$inr";
else
print "<a href=\"enter.php?str=$str&ses=$s\"></a>прихожая [$counton]<br />$inr";
$result=mysql_query("SELECT * from `room` WHERE `status`<3 AND `status`!='9' ORDER by `roomp` DESC");
while($room=mysql_fetch_assoc($result))
{
if(!isset($oncount[$room['rid']]))
$counton=0;
else
$counton=$oncount[$room['rid']];
if(isset($inroom[$room['rid']]))
$inr=$inroom[$room['rid']].'<br />';
else
$inr='';
if(@$_SESSION['enter'])
{
if($room['status']!='1')
print "<a href=\"room.php?ses=$s&str=$str&room=$room[rid]\">$room[name] [$counton]</a><br />$inr";
else
print "<a href=\"sortir.php?ses=$s&str=$str&room=$room[rid]\">$room[name] [$counton]</a><br />$inr";
}
else
{
print "$room[name] [$counton]<br />$inr";
}
}
if(!isset($oncount[1001]))
$oncount[1001]=0;
print "<b><a href=\"intim.php?str=$str&ses=$s\">Интим[$oncount[1001]]</a><br /></b>";
if(@$inroom['1001'])
print @$inroom['1001'].'<br />';
if(@$_SESSION['enter'])
{
print("$razd<a href=\"enter.php?str=$str&ses=$s\">Вернуться в чат</a><br/>");
}
else
{
print "<a href=\"index.php?str=$str\">Вернуться на главную</a><br/>";
}
print $endpage;
print '<!-- '.(microtime()-$mt).' -->';
?>