A página, é o painel de administração de um sistema de usuários, e quero tirar a restrição para embutir em meu painel administrativo.
Código:
<?
session_start();
include("novosite/usuarios/config.php");
$ip = $_SERVER['REMOTE_ADDR'];
$sqlcontent = mysql_query("select * from usr_config");
$content = mysql_fetch_array($sqlcontent);
if(!isset($_SESSION[usr_name]) || empty($_SESSION[usr_name]) || !isset($_SESSION[usr_level]) || empty($_SESSION[usr_level]))
{
session_destroy();
session_unset();
die('
<body bgcolor="#B0D7DF">
<div align="center">
<table width="50%" border="1">
<tr>
<td><font face="verdana" size="2" color="#FFFFFF">Você precisa estar logado para ver essa pagina...</font></td>
</tr>
<tr>
<td><font face="verdana" size="2" color="#FFFFFF">Clique <a href="index.php">aqui</a> para logar.</font></td>
</tr>
</table>
</div>
</body>');
}
include("novosite/usuarios/func.php");
/*
Sistema de usuários
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="css.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Usersystem</title>
</head>
<center>
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" style="background-color: #000000" text="#FFFFFF">
<font face="Verdana" size="1">
<table style="width: 177px; border-width: 0px" id="table1" height="43">
<tr>
<td style="border-style: none" align="middle" width="103">
<font color="#000000" face="Verdana" size="1"
<center>Olá <? echo("$_SESSION[usr_name]");?></center>
<table style="width: 132px; height: 87px; border-width: 0px" id="table2">
<tr>
<font face="Verdana" size="1">
<td style="border-style: none" align="middle" width="126" height="15">
<font face="Verdana" size="1">
<center><br>
</font>
<font color="#000000" face="Verdana" size="1"><a href="sys.php">
<span style="text-decoration: none">Opções do Sistema</span></a></center></font></td>
</font>
</tr>
<tr>
<font face="Verdana" size="1">
<td style="border-style: none" align="middle" width="126" height="15">
<font color="#000000" face="Verdana" size="1"><span style="text-decoration: none">
<center>
<a href="badge.php">
<span style="text-decoration: none">Emblemas</span></center></a></span></font></td>
</font>
</tr>
<tr>
<font face="Verdana" size="1">
<td style="border-style: none" align="middle" width="126" height="15">
<font color="#000000" face="Verdana" size="1"> <span style="text-decoration: none"><center><a href="editacc.php">
<span style="text-decoration: none">Editar Usuario</span></center></a></span></font></td>
</font>
</tr>
<tr>
<font face="Verdana" size="1">
<td style="border-style: none" align="middle" width="126" height="15">
<font face="Verdana" size="1">
<center><a href="administrar.php?login=logout">
<span style="text-decoration: none">Sair</span></center></a></font></td>
</font>
</tr>
</table>
</td>
<td style="border-style: none" align="middle" width="64">
<font face="Verdana" size="1">
</font></td>
</tr>
</table>
</font>
</center>
</body>
</html>










