All pastes #47801 Raw Edit

Unnamed

public text v1 · immutable
#47801 ·published 2006-04-01 16:45 UTC
rendered paste body
<?php
session_start();
if (!isset($_SESSION['count'])) {
   $_SESSION['count'] = 1;
} else {
   $_SESSION['count']++;
}
?>

<p>
Hello visitor, you have seen this page <?php echo $_SESSION['count']; ?> times.
</p>

<p>
To continue, <a href="nextpage.php?<?php echo strip_tags(SID); ?>">click
here</a>.
</p>