Файл: pages/index.php
Строк: 117
<?
include_once('../apahe/ini.php');
$apach = mysql_fetch_assoc(mysql_query("SELECT * FROM `apache` WHERE `id` = '".int($_GET['id'])."'"));
$urlup='/id-'.$apach['id'].'';
$inc['title'] = ''.name($apach['id']).'';
include_once('../apahe/top.php');
if (!isset($apache)){
header ('location: /input.dll');
exit;
}
if (!$apach){
error('Такой пользователь не зарегистрирован.');
include_once('../apahe/bottom.php');
exit;
}
switch ($_GET['selest']){
default:
echo '<div class="main-href">';
echo '<name>'.apache($apach['id']).''.name($apach['id']).'</name>'.status($apach['id']).'</br>';
echo ''.level($apach['id']).'';
if ($apache['id']==$apach['id']){
echo '</br>';
icons('rub');
echo 'Рублей: '.$apach['rub'].'';
}
echo '</div>';
echo '<a class="main-href" href="/pages/anketa-'.int($apach['id']).'.dll" title="Анкета">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
icons('anketa');
echo 'Анкета';
echo '</td>';
echo '<td class="apa-r">';
if ($apache['id']==$apach['id'])echo '<time><a href="/pages/anketa-edit.dll" title="Изменить">Изменить</a></time>';
echo '</td></tr>';
echo '</table>';
echo '</a>';
echo '<a class="main-href" href="/pages/friend-'.int($apach['id']).'.dll" title="Друзья">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
icons('friend');
echo 'Друзья';
echo '</td>';
echo '<td class="apa-r">';
$friend = mysql_result(mysql_query("SELECT COUNT(*) FROM `friend` WHERE `id-apache` = '".int($apach['id'])."'"), 0);
echo '<time>'.$friend.'</time>';
echo '</td></tr>';
echo '</table>';
echo '</a>';
if ($apache['id']==$apach['id']){
echo '<a class="main-href" href="/pages/message.dll" title="Почта">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
icons('message');
echo 'Почта';
echo '</td>';
echo '<td class="apa-r">';
$message = mysql_result(mysql_query("SELECT COUNT(*) FROM `friend-m` WHERE `id-apache` = '".int($apach['id'])."'"), 0);
$message_new = mysql_result(mysql_query("SELECT COUNT(*) FROM `friend-m` WHERE `id-apache` = '".int($apach['id'])."' and `read` = '1'"), 0);
echo '<time>'.$message.'';
if ($message_new!=0)echo '<new>+'.$message_new.'</new>';
echo '</time>';
echo '</td></tr>';
echo '</table>';
echo '</a>';
echo '<a class="main-href" href="/pages/journal.dll" title="Журнал">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
icons('journal');
echo 'Журнал';
echo '</td>';
echo '<td class="apa-r">';
$journal = mysql_result(mysql_query("SELECT COUNT(*) FROM `apache-j` WHERE `id-apache` = '".int($apach['id'])."'"), 0);
$journal_new = mysql_result(mysql_query("SELECT COUNT(*) FROM `apache-j` WHERE `id-apache` = '".int($apach['id'])."' and `read` = '1'"), 0);
echo '<time>'.$journal.'';
if ($journal_new!=0)echo '<new>+'.$journal_new.'</new>';
echo '</time>';
echo '</td></tr>';
echo '</table>';
echo '</a>';
echo '<a class="main-href" href="/pages/settings.dll" title="Настройки">';
icons('settings');
echo 'Настройки</a>';
}
if ($apache['id']!=$apach['id']){
$friend_t = mysql_result(mysql_query("SELECT COUNT(*) FROM `friend` WHERE `id-apache` = '".int($apache['id'])."' and `id-apach` = '".int($apach['id'])."'"), 0);
if ($friend_t==0){
echo '<a class="main-href" href="/id-'.int($apach['id']).'.dll?selest=new-friend" title="Добавить в друзья">';
icons('friend');
echo 'Добавить в друзья</a>';
}
if ($friend_t==0){
echo '<a class="main-href" href="/pages/message.dll?selest=new&id='.int($apach['id']).'" title="Написать сообщение">';
icons('message');
echo 'Написать сообщение</a>';
}else{
echo '<a class="main-href" href="/pages/message.dll?selest=otvet&id='.int($apach['id']).'" title="Написать сообщение">';
icons('message');
echo 'Написать сообщение</a>';
}
}
if ($apache['id']!=$apach['id'] && $apache['level']>=2){
echo '<a class="main-href" href="/panel-control/apache.dll?selest=ban&id='.int($apach['id']).'" title="Забанить">';
icons('ban');
echo 'Выдать бан</a>';
}
break;
case 'new-friend':
if ($apache['id']!=$apach['id']){
if ($apache['pol']==1)$mess_t='Вас добавил';
if ($apache['pol']==2)$mess_t='Вас добавила';
mysql_query("INSERT INTO `apache-j` SET `id-apache` = '".int($apach['id'])."', `id-apach` = '".int($apache['id'])."', `message` = '".$mess_t."', `url` = '/pages/friend-".int($apache['id'])."', `name-url` = 'в друзья', `read` = '1', `date` = '".time()."'");
mysql_query("INSERT INTO `friend` SET `id-apache` = '".int($apache['id'])."', `id-apach` = '".int($apach['id'])."', `date` = '".time()."'");
header('Location: /pages/friend-'.$apache['id'].'.dll');
}else{
header('Location: /id-'.int($apach['id']).'.dll');
}
break;
}
include_once('../apahe/bottom.php');
?>