32 lines
916 B
PHP
32 lines
916 B
PHP
<?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');
|
|
?>
|