No no, he meant not to print that text, but to just have:
<?=SID?>
in the middle of a PHP page (outside the <?php ?>)
What this does is echo the PHP session id variable. It is recommended that you instead use
<?php echo SID; ?>
to avoid use of short tags.
Read this page for more info about PHP session handling:
http://www.php.net/session-start
HTH!
-Snib
Where will you be in 100 years?
Try new FreshView 0.2!
The two rules: 1) I am always wrong. 2) If I'm right, refer to rule number 1.