mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Get rid of use of short tag.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68907 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
453df6705e
commit
6dd2d6e638
1 changed files with 4 additions and 3 deletions
|
@ -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 @@ else {
|
|||
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>
|
||||
|
|
Loading…
Reference in a new issue