ok once again i choose to learn from an older book :/
but i guess the constant errors i run across just help reinforce the learning process lol
anyways, can you help me solve why this does not work? it always shows that i have been on the page once...
<?
session_start();
if(!isset($count))
{
session_register ("count");
$count = 1;
}
?>
You have been on this page <?=$count?> times.
<?
$count++;
?>
solved - did a little manual digging and found out my solution: have to put $_SESSION['count'] for every instance of $count