Inital commit
This commit is contained in:
@@ -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');
|
||||
?>
|
||||
Reference in New Issue
Block a user