View file v4/user.php

File size: 488B
<?php


require_once('include/include_top.php');
$template_file = 'user';

$user = user_info_with_key($_REQUEST['k']);
$smarty->assign("user", $user);

$owner = user_info($_REQUEST['user_id']);
$smarty->assign("owner", $owner);
#print_r($owner);

$smarty->assign("page_title", $owner['user_user_name']);

$room_id = preg_replace("/[^0-9]/", "", $user['user_location']);
$room = chat_room_info($room_id);
$smarty->assign("room", $room);






require_once('include/include_bottom.php');
?>