- Fix code sample

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@71687 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2002-03-02 22:45:30 +00:00
parent 9502e4b075
commit 2a16febb34

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.82 $ -->
<!-- $Revision: 1.83 $ -->
<reference id="ref.session">
<title>Session handling functions</title>
<titleabbrev>Sessions</titleabbrev>
@ -112,9 +112,9 @@ else {
// Use $HTTP_SESSION_VARS with PHP 4.0.6 or less
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
}
else {
} else {
$_SESSION['count']++;
}
?>
]]>
</programlisting>