<?
/*###############################################################*\
## iBWd News 1.1b ##
## http://bramstart.be/ibwds ##
## ##
*/###############################################################*\
require("config.php");
$query = "SELECT * FROM $table_users";
$result = mysql_query($query);
list($col1) = mysql_fetch_row($result);
if($col1==""){
header("location: admin.php");
exit;
}
unset($query);
unset($result);
include("access.php");
?>
<html>
<head>
<title>iBWd news: Admin panel</title>
<style>
<?
echo $style;
?>
</style>
</head>
<frameset framespacing='0' border='0' rows='95,*' frameborder='0'>
<frame name='head' scrolling='no' noresize target='content' src='head.php'>
<frame name='content'>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>