Inital commit

This commit is contained in:
Tilman
2011-10-26 10:11:42 +02:00
commit c0da376199
888 changed files with 44367 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 130 B

+31
View File
@@ -0,0 +1,31 @@
<?php
session_start();
$_SESSION['visits']++;
$_SESSION['angemeldet'] = true;
$pagetitle = 'tilman.de';
$breadcrumb = 'Seite';
// $keywords = '';
// $description = '';
include_once($_SERVER["DOCUMENT_ROOT"].'/security.php');
include_once($_SERVER["DOCUMENT_ROOT"].'/pageheader.php');
?>
<div class="content">
<?php print 'You have visited here '.$_SESSION['visits'].' times.'; ?><br />
<?php echo "<a href=\"\uni\index.php\">Seite ohne Sessionmanagement</a>"; ?><br />
<?php echo "<a href=\"page2.php\">page2</a>"; ?><br />
<?php echo "<a href=\"{$_SERVER['PHP_SELF']}\">Diese Seite</a>"; ?><br />
<a href="http://localhost/Metainformationen/media/index.php">Diese Seite direkt</a>
</div>
<div style="text-align: center;">
<img src="<?php echo itemURL('bilder/siegel.gif'); ?>" border="1" />
<?php echo $kalua; ?>
</div>
<?php
include_once($_SERVER["DOCUMENT_ROOT"].'/pagefooter.php');
?>
+29
View File
@@ -0,0 +1,29 @@
<?php
session_start();
$_SESSION['visits']++;
$pagetitle = 'tilman.de';
$breadcrumb = 'Seite';
// $keywords = '';
// $description = '';
include_once($_SERVER["DOCUMENT_ROOT"].'/pageheader.php');
?>
<div style="position: absolute; top: 3px; right: 3px; font-size: x-small;">
<?php echo '<a href="/logout.php">Abmelden</a>'; ?>
</div>
<div class="content">
<?php print 'You have visited here '.$_SESSION['visits'].' times.'; ?><br />
<?php echo "<a href=\"index.php\">index</a>"; ?><br />
<?php echo "<a href=\"{$_SERVER['PHP_SELF']}\">Diese Seite</a>"; ?>
</div>
<div style="text-align: center;">
<img src="bilder/siegel.gif" border="0" />
</div>
<?php
include_once($_SERVER["DOCUMENT_ROOT"].'/pagefooter.php');
?>