BOSWatch/exampleAddOns/alarmMonitorWeb/show_fms.php

30 lines
581 B
PHP
Raw Normal View History

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-13 23:33:36 +02:00
include("tpl/a_header.php");
?>
<div class="wrapper style3">
<div class="title">FMS</div>
<div id="highlights" class="container" style="">
<?php
2015-07-13 23:33:36 +02:00
include("tpl/fms.php");
include("tpl/a_footer.php");
?>