AM testing sessions for a project, and the tmp folder is creating them (easyphp/apache on win2000). However calls to the $count var ar not getting a result.
<?php
session_start();
$count = session_register("count");
$count++;
?>
<body>
Visit <?php echo $count; ?>
<P>
Link to next self <a href="count.php?<?php echo(SID);?>">link</a>
<p>
<?php echo(SID);?>
</body>
</html>
Looking at the actual sessions file its saying count|N;
The session ID is showing as it should. Its just not incrementing up.
Anyone have this experience or anything like it before.
Also, I am doing a complete refresh everytime.