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

22 lines
431 B
PHP

<?php
// ini_set('session.use_trans_sid', true);
// ini_set('session.use_cookies', '0');
session_start();
$_SESSION['tilman']++;
?>
<html>
<head>
<title></title>
</head>
<body>
<p>
<?php
echo 'tilman = '.$_SESSION['tilman'];
?>
</p>
<p>
<a href="http://localhost/Metainformationen/session/seite1.php">Seite1</a><br>
<a href="http://localhost/Metainformationen/session/ende.php">Ende</a>
</p>
</body>
</html>