LaFactoriaVerde_Web/logs/index.php
2010-10-07 14:20:22 +00:00

28 lines
596 B
PHP

<?php
session_start();
include("../config.php");
include("../functions.php");
if (allow_access(Administrators) != "yes")
{
header("Location:$base_dir/index.php");
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Registro de accesos - La Factoría Verde</title>
</head>
<frameset cols="170,*">
<frame name="contents" target="main" src="log.html">
<frame name="main" src="log.php">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>