1
mirror of https://github.com/jakejarvis/jbb.git synced 2025-10-21 05:54:25 -04:00

first commit

This commit is contained in:
2018-10-18 12:42:02 -04:00
commit 59d1ee3c22
105 changed files with 3773 additions and 0 deletions

27
admin/index.php Executable file
View File

@@ -0,0 +1,27 @@
<?php
include('../conf.php');
require('../functions.php');
session_start()
?>
<?php
if ($ck_userID == "") {
echo "<meta http-equiv=\"refresh\" content=\"0; url=./login.php\">";
} else {
echo "
<HTML>
<HEAD>
<FRAMESET COLS=\"205,*\" BORDER=\"0\">
<FRAME NAME=\"left\" SRC=\"admin.php?act=left\" RESIZE=\"no\">
<FRAME NAME=\"main\" SRC=\"admin.php?act=main\" RESIZE=\"no\">
</FRAMESET>
</HEAD>
</HTML>";
}
?>