ah el contenido de usuarios.php es este
Código PHP:
<html>
<head>
<title>Panel de Administracion - Noticias</title>
<link href="../css/general.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
background-image: url(../imagenes/bg_pattern.gif);
}
-->
</style>
</head>
<?php
//incluimos el archivo de conexion y el login
include("conex.php");
include("login.php");
//comprobamos si esta logueado correctamente, si lo esta mostramos la pagina
if($loginCorrecto)
{ ?>
<body>
<table width="650" border="0" align="center">
<tr>
<td colspan="2"><div align="center"><img src="http://www.forosdelweb.com/f18/imagenes/panel.png" width="500" height="200" /></div></td>
<tr>
<td><div align="center" class="Estilo16">Registra un Usuario | <a href='../loginpanel/administracion.php'> Volver </a></div></td>
</tr>
<tr><td>
<FORM ACTION="registrar.php" METHOD="post">
<br>
<b>* Nick:</b><br><br>
<INPUT TYPE="text" NAME="nick" SIZE="20" MAXLENGTH="20">
<BR><br>
<b>* Email:</b><br><br>
<INPUT TYPE="text" NAME="email" SIZE="28" MAXLENGTH="100">
<BR><br>
<b>* Password:</b><br><br>
<INPUT TYPE="password" NAME="password" SIZE="28" MAXLENGTH="20">
<BR><br>
<b>* Nombre:</b><br><br>
<INPUT TYPE="text" NAME="nombre" SIZE="28" MAXLENGTH="255">
<BR><br>
<INPUT TYPE="submit" CLASS="boton" VALUE="Registrar">
</FORM>
</td></tr>
</table>
<?php
}
//si no esta logueado, le mostramos este error y le redirigimos.
else
{
echo "<META HTTP-EQUIV=\"refresh\" CONTENT=\"2; url=../panel.php\">";
echo "<table style=\"height:100%;width:100%;\" border=\"0\"><tr><td class=\"estilo34\"><div align=\"center\">No estas logueado, no puedes acceder aquí.<br> Seras redireccionado automaticamente.</div></td></tr></table>";
}
?>
</body>
</html>