Размер файла: 1.88Kb
<?php
#######################################################
# [Автор скрипта: ] #
# [Роман Гринько aka Nominal] #
# [ICQ: 405-623-516] [E-Mail: [email protected]] #
#######################################################
@session_start();
$dir = '../';
include_once $dir.'system/func.php';
if(is_user()) {
if($_GET['uz'] and $_GET['uz']!=='') {
if($_GET['uz']==$_SESSION['login']) { $me = 'yes'; }
if(!file_exists($dir.'system/users/'.$_GET['uz'].'.txt')) { header('Location: '.$dir.'index.php?no_user'); exit(); }
$file = file_get_contents($dir.'system/users/'.$_GET['uz'].'.txt');
if($file=='') { header('Location: '.$dir.'index.php?bad_profil'); exit(); }
$data = explode('||', $file);
if($data[0]=='') { header('Location: '.$dir.'index.php?no_profil_mail'); exit(); } #
if($data[1]=='') { header('Location: '.$dir.'index.php?no_profil_pass'); exit(); } #
if($data[2]=='') { header('Location: '.$dir.'index.php?no_profil_level'); exit(); } #
if($data[3]=='') { header('Location: '.$dir.'index.php?no_profil_rd'); exit(); } #
$l = $_GET['uz'];
$m = $data[0];
$rd = $data[3];
$d = $data[2];
} else {
$me = 'yes';
$l = $_SESSION['login'];
$m = $_SESSION['mail'];
$rd = $_SESSION['reg_date'];
$d = $_SESSION['dostup'];
}
include $dir.'system/head.php';
echo '<div class="label">Анкета</div>
<div class="links2">';
if($me=='yes') {
echo '<div class="news"><small>* Внимание! Вы просматриваете собственный профиль!</small></div>'; }
echo 'Логин - <b>'.$l.'</b><br>
E-Mail - <b>'.$m.'</b><br>
Дата регистрации - <b>'.$rd.'</b><br>
Уровень доступа - <b>'.parse_dostup($d).'</b><br></div>';
include $dir.'system/end.php';
} else {
header('Location: '.$dir.'index.php?access_denied');
}
?>