mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
//Session starten
|
|
session_start();
|
|
|
|
//Datenbankverbindung schliessen
|
|
include("dbconnect.inc");
|
|
|
|
?>
|
|
|
|
<!--
|
|
************************************************************************
|
|
Modulprüfung: blumenshop.zli
|
|
Sandro Ropelato
|
|
21. September 2006
|
|
************************************************************************
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>airline buchhaltung</title>
|
|
<link type="text/css" rel="stylesheet" href="style1.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="standard">
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td><img src="./bilder/titel_links.bmp"/></td>
|
|
<td><img src="./bilder/titel_mitte.bmp"/></td>
|
|
<td><img src="./bilder/titel_rechts.bmp"/></td>
|
|
<td background="./bilder/titel_mitte.bmp" width="5000"><img src="./bilder/titel_mitte.bmp"/></th>
|
|
</tr>
|
|
<tr height="500" valign="top">
|
|
<td background="./bilder/navigation.bmp">
|
|
<?php
|
|
include("navigation.php");
|
|
?>
|
|
</td>
|
|
<td> </td>
|
|
<td colspan="2">
|
|
<?php
|
|
include("hauptseite.php");
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<html>
|
|
|
|
|
|
|