Files
tilman.de/www/Metainformationen/media/page2.php
T
2011-10-26 10:11:42 +02:00

30 lines
746 B
PHP

<?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');
?>