<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2005 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
// Autorius: Sharkman
require_once "maincore.php";
require_once "subheaderis.php";
include KALBA.LOCALESET."members-profile.php";
include KALBA.LOCALESET."user_fields.php";
if (!isset($lookup) || !isNum($lookup)) fallback("index.php");

$result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='$lookup'");
if (dbrows($result)) { $data = dbarray($result); } else { redirect("index.php"); }

openside($locale['s01'].$data['user_name']);
echo "<table align='center' cellpadding='0' cellspacing='0'>
";


echo "<b>".$data['user_title']."</b>\n";


echo "</table>\n";
closeside();

?>