ID: 15573
Updated by: [EMAIL PROTECTED]
-Summary: save_handler mm - doesn't create _SESSION[bar] at the
first-time
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Analyzed
Bug Type: Session related
Operating System: debian woody (3.0)
PHP Version: 4.1.1
Previous Comments:
------------------------------------------------------------------------
[2002-02-15 11:43:44] [EMAIL PROTECTED]
Hi,
if I use mm as save handler. I have to click twice at the first time to
increment the counter. With files it works fine.
cheers,
Marcus.
<?php
ini_set('session.save_handler',mm);
session_start();
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
}else{
$_SESSION['count']++;
}
echo $_SESSION['count'];
echo "<br><a href='$PHP_SELF'>click me</a>";
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=15573&edit=1