>From the php docs(XC. Session handling functions) ====================================== <?php session_register ("count"); $count++; ?>
Hello visitor, you have seen this page <?php echo $count; ?> times.<p>; <?php # the <?=SID?> is necessary to preserve the session id # in the case that the user has disabled cookies ?> To continue, <A HREF="nextpage.php?<?=SID?>">click here</A> =============================================== -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php