View file pages/profile.php

File size: 3.17Kb
<?php 
// by mides, wmclub.mobi

$title = 'Профиль пользователя';
require('../config.php');
require('../includes/sys.php');
require('../includes/start.php');
require('../includes/header.php');

$u = intval($_REQUEST['u']);

$user = mysql_fetch_assoc(mysql_query("SELECT * FROM `users` WHERE `id` = '$u'"));
if(isset($user['id'])){
	tp('Профиль пользователя '.login($u));
	$result = mysql_query("SELECT `id` FROM `online` WHERE `id_user` = '$u'");
	if(mysql_num_rows($result)){
		echo '<font color="green">On-line</font><br />';
	}
	echo 'С нами с: <b>'.date('d.m.Y', $user['user_regtime']).'</b><br/>';
	echo 'Карма: '.$user['user_points'].'<br/>';
	echo '<hr />';
	
	$c_msg = mysql_result(mysql_query("SELECT COUNT(`id`) FROM `chat` WHERE `id_user` = '$u'"), 0);
	$f_msg = mysql_result(mysql_query("SELECT COUNT(`id`) FROM `forum_msg` WHERE `id_user` = '$u'"), 0);
	$g_msg = mysql_result(mysql_query("SELECT COUNT(`id`) FROM `book` WHERE `id_user` = '$u'"), 0);
	
	echo 'Сообщений в чате: <b>'.$c_msg.'</b><br />
		 Сообщений в гостевой: <b>'.$g_msg.'</b><br />
		 Сообщений на форуме: <b>'.$f_msg.'</b><br />
		 <hr />';
	
	if(!empty($user['profile_name']) or !empty($user['profile_sex']) or !empty($user['profile_birthday']) or !empty($user['profile_country']) or !empty($user['profile_from']) or !empty($user['profile_icq']) or !empty($user['profile_site'])){
		
		if(!empty($user['profile_name'])){
			echo 'Имя: <b>'.$user['profile_name'].'</b><br />';
		}
		if(!empty($user['profile_sex'])){
			switch($user['profile_sex']){
				case '1': $sex = 'Мужской'; break;
				case '2': $sex = 'Женский'; break;
				default: $sex = 'Женский';
			}
		echo 'Пол: '.$sex.'<br />';
		}
		if(!empty($user['profile_birthday'])){
			echo 'Д/Р: '.$user['profile_birthday'].'<br />';
		}
		if(!empty($user['profile_country'])){
			echo 'Страна: '.$user['profile_country'].'<br />';
		}
		if(!empty($user['profile_from'])){
			echo 'Откуда: '.$user['profile_from'].'<br />';
		}
		if(!empty($user['profile_icq'])){
			echo 'ICQ: <img src="http://web.icq.com/whitepages/online?icq='.$user['profile_icq'].'&amp;img=27" alt="icq" height="10" width="10"/> '.$user['profile_icq'].'<br />';
		}
		if(!empty($user['profile_site'])){
			echo 'Сайт: <a href="http://'.$user['profile_site'].'">'.$user['profile_site'].'</a><br />';
		}
	}
	
	
	if(!empty($user['profile_about'])){
		echo '<hr />';
		echo '<b>О себе:</b><br/>'.$user['profile_about'];
	}
	
	echo '<hr />';
	
	if($u['id'] != $u){
		echo '&bull; <a href="private.php?act=send&amp;us='.$user['user_login'].'">Написать в приват</a><br>';
		echo '&bull; <a href="friends.php?act=add&amp;u='.$user['user_login'].'">В контакт</a> / <a href="foes.php?act=add&amp;u='.$user['user_login'].'">игнор</a>';
	}elseif($u['id'] == $u){
		echo '&bull; <a href="office.php?act=profile">Изменить профиль</a><br>';
	}
	
}else{
	error('Такого пользователя не существует!');
}
nav_main();

require ('../includes/tail.php');
?>