mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
42 lines
470 B
PHP
42 lines
470 B
PHP
<div class="standard">
|
|
|
|
<?php
|
|
|
|
$seite = $_GET[seite];
|
|
|
|
if($seite==0)
|
|
{
|
|
include("startseite.php");
|
|
}
|
|
if($seite==1000)
|
|
{
|
|
include("kontenplan.php");
|
|
}
|
|
if($seite==1100)
|
|
{
|
|
include("konto_hinzufuegen.php");
|
|
}
|
|
if($seite==2000)
|
|
{
|
|
include("hauptbuch.php");
|
|
}
|
|
if($seite==3000)
|
|
{
|
|
include("buchung.php");
|
|
}
|
|
if($seite==4000)
|
|
{
|
|
include("login.php");
|
|
}
|
|
if($seite==5000)
|
|
{
|
|
include("logout.php");
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|