Просмотр файла bola/index.php

Размер файла: 767B
<?php

session_name("SID");
session_start();
include_once "../theme/index.php";
include_once"../config.php";
include_once "../template/login2.php";


if (!$_SESSION[uin]=="" && !md5($_SESSION[par])=="" && md5($_SESSION[par])==$provpar && $_SESSION[uin]==$provuin)
{
		if ($bola==555)
		{

	echo'<br><center><big>Панель Админа</center></big><br>
	<div class="b"><a href="newuin.php?'.SID.'">Создать новый UIN</a><br></div>
	<div class="b"><a href="del.php?'.SID.'">Удалить UIN</a><br></div>
	<div class="b"><a href="setting.php?'.SID.'">Настройки</a><br></div>';

}else{
header ("Location: ../index.php?".SID);
}
}else{
header ("Location: ../index.php?".SID);
}

include_once "../theme/foot.php";

?>