Файл: pages/friend.php
Строк: 67
<?
include_once('../apahe/ini.php');
$apach = mysql_fetch_assoc(mysql_query("SELECT * FROM `apache` WHERE `id` = '".int($_GET['id'])."'"));
$urlup='/pages/friend-'.$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-text">';
echo '<a href="/id-'.int($apach['id']).'.dll" title="Вернуться к '.name($apach['id']).'">Вернуться к '.name($apach['id']).'</a>';
echo '</div>';
if ($_GET['set']==okey){addod('Друг удален из друзей.');}
$total = mysql_result(mysql_query("SELECT COUNT(*) FROM `friend` WHERE `id-apache` = '".int($apach['id'])."'"), 0);
nav_start($total, 10);
if ($total!=0){
$friend_c = mysql_query("SELECT * FROM `friend` WHERE `id-apache` = '".int($apach['id'])."' ORDER BY `date` DESC LIMIT $start, 10");
while ($friend = mysql_fetch_assoc($friend_c)){
echo '<div class="main-href">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
echo '<a href="/id-'.int($friend['id-apach']).'.dll" title="'.name($friend['id-apach']).'">';
echo ''.apache($friend['id-apach']).''.name($friend['id-apach']).'</a>';
if ($apache['id']==$friend['id-apach'])echo ' <name>Это ты</name>';
echo '</td>';
echo '<td class="apa-r">';
echo '<time>'.vtime($friend['date']).'</time>';
echo '</td></tr>';
echo '</table>';
if ($apache['id']==$apach['id']){
echo '<a href="message.dll?selest=otvet&id='.int($friend['id-apach']).'" title="Написать">Написать</a> | ';
echo '<a href="friend-'.int($apach['id']).'.dll?selest=delete&id='.int($friend['id-apach']).'" title="Удалить">Удалить</a>';
}
echo '</div>';
}}else{
error('Друзей у '.name($apach['id']).' нету.');
}
view_nav('/pages/friend-'.int($apach['id']).'.dll?');
break;
case 'delete':
$friend = mysql_fetch_assoc(mysql_query("SELECT * FROM `friend` WHERE `id-apach` = '".int($_GET['id'])."'"));
if (!$friend){
header ('location: /pages/friend-'.int($friend['id-apache']).'.dll');
exit;
}
mysql_query("DELETE FROM `friend` WHERE `id` = '".int($friend['id'])."'");
header ('location: /pages/friend-'.int($friend['id-apache']).'.dll');
break;
}
include_once('../apahe/bottom.php');
?>