2015-07-13 23:33:36 +02:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
session_start();
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
if(!isset($_SESSION["username"]))
|
|
|
|
|
{
|
|
|
|
|
echo "Bitte erst <a href=\"login.html\">einloggen</a>";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
require_once ("config.php");
|
|
|
|
|
require_once ("tpl/parser.php");
|
|
|
|
|
require_once ("tpl/mysql.class.php");
|
|
|
|
|
$db = new Database($dbhost, $dbuser, $dbpassword, $database, 1); //Show Error = 1!
|
2015-07-14 14:11:49 +02:00
|
|
|
include("tpl/a_header.php");
|
2015-07-13 23:33:36 +02:00
|
|
|
?>
|
2015-07-14 14:11:49 +02:00
|
|
|
<div class="wrapper style3">
|
|
|
|
|
<div class="title">POCSAG</div>
|
|
|
|
|
<div id="highlights" class="container" style="">
|
|
|
|
|
<?php
|
2015-07-13 23:33:36 +02:00
|
|
|
include("tpl/pocsag.php");
|
2015-07-14 14:11:49 +02:00
|
|
|
include("tpl/a_footer.php");
|
|
|
|
|
?>
|