819fba0016619a464f743a9a534f83fc595aa06c
[misc/kostenrechnung] / index.php
1 <?php
2 require_once('config.php');
3 require_once('lib/general.php');
4
5 $jsfiles = array('lib/json_parse.js');
6 $jscode = '';
7 $html = process();
8
9 $html .= debug_info();
10
11 ?>
12 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
13 <html>
14 <head>
15 <title>Kostenleistungsrechnung</title>
16 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
17 <?=load_js($jsfiles, $jscode);?>
18 <link href="stylesheet.css" rel="stylesheet" type="text/css">
19 </head>
20 <body>
21 <?=$html; ?>
22 </body>
23 </html>