yohgaki         Mon Jan 28 02:15:51 2002 EDT

  Modified files:              
    /phpdoc/en/functions        session.xml 
  Log:
  Get rid of use of short tag. 
  
  
Index: phpdoc/en/functions/session.xml
diff -u phpdoc/en/functions/session.xml:1.77 phpdoc/en/functions/session.xml:1.78
--- phpdoc/en/functions/session.xml:1.77        Sun Jan 27 07:02:50 2002
+++ phpdoc/en/functions/session.xml     Mon Jan 28 02:15:49 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.77 $ -->
+<!-- $Revision: 1.78 $ -->
  <reference id="ref.session">
   <title>Session handling functions</title>
   <titleabbrev>Sessions</titleabbrev>
@@ -235,11 +235,12 @@
 Hello visitor, you have seen this page <?php echo $count; ?> times.<p>;
 
 <?php
-# the <?=SID?> is necessary to preserve the session id
+# the <?php echo SID?> (<?=SID?> can be used if short tag is enabled) 
+# 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>
+To continue, <A HREF="nextpage.php?<?php echo SID?>">click here</A>
 ]]>
      </programlisting>
     </example>


Reply via email to