Hi, I have this code working
<?php
start_session();
if (!session_is_registered('count')) {
session_register('count');
$count = 1;
}
else {
$count++;
}
?>
Hello visitor, you have seen this page <?php echo $count; ?> times.<p>
To continue, <A HREF="nextpage.php?<?php echo strip_tags (SID)?>">click here</A>
but I dont want the session sent in the URL like that, I know that
some how you can pass the sessions without doing in the URL. I
want to pass the session from page to page without having it in
the URL, please help
P.S. I did search but all the session threads that it came up with couldnt help my problem (or im so dense i didnt realise they could). Thanks in advance!