Try this test....Put this into a page, and click the reload button a couple of times
<?
if (!session_is_registered('count')) {
session_register('count');
$count = 1;
} else {
$count++;
}
?>
Hello visitor, you have seen this page <?php echo $count; ?> times.<p>;