Initial version, with no update possibility

This commit is contained in:
Gergely Polonkai (W00d5t0ck)
2010-12-17 15:41:45 +01:00
commit 7c6ed627cc
27 changed files with 1318 additions and 0 deletions

9
check_user.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
require 'config.php';
include_once 'class.db.php';
if (!array_key_exists('loginuser', $_SESSION) || !pwsdbh($dbDSN)->userExists($_SESSION['loginuser']))
{
header('Location: login.php');
exit;
}