Try this little rework...






<?
session_start();


if ( !isset($count)) {
    $count = 0;
    session_register("count");
    echo "<li>Counter initialized, please reload this page to see it
increment";
} else {
    echo "<li>Waking up session $PHPSESSID";
    $count++;
    session_register("count");
}
echo "<li>The counter is now $count ";
?>










---------------------
John Asendorf - [EMAIL PROTECTED]
Web Applications Developer
http://www.lcounty.com - NEW FEATURES ADDED DAILY!
Licking County, Ohio, USA
740-349-3631
Aut insanit homo, aut versus facit


> -----Original Message-----
> From: Johannes Janson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 04, 2001 1:34 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] session, session AAAARGH
> 
> 
> Hi,
> 
> I just figured out that my session-management is
> not working. I have a small, simple script to test
> this:
> 
> <?
> session_start();
> session_register("SESSION");
> 
> if (! isset($SESSION)) {
>     $SESSION["count"] = 0;
>     echo "<li>Counter initialized, please reload this page to see it
> increment";
> } else {
>     echo "<li>Waking up session $PHPSESSID";
>     $SESSION["count"]++;
> }
> echo "<li>The counter is now $SESSION[count] ";
> ?>
> 
> But the counter stays at "0". And in the specified session.save_path
> directory I have a new file every time I reload the page.
> 
> What is wrong??
> 
> TIA
> johannes
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: 
> [EMAIL PROTECTED]
> 

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to