thanks John but nope, still the same...

just some -maybe helpful- more info:
php.ini:
session.save_handler      = files
session.save_path         = C:\Programme\Apache
Group\Apache\cgi-bin\php4\sessiondata
session.use_cookies       = 1
session.name              = PHPSESSID


""Asendorf, John"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Don't forget session_destroy (); at some point...
>
> ---------------------
> 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: Asendorf, John [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, April 04, 2001 1:49 PM
> > To: Johannes Janson; Php-Windows (E-mail)
> > Subject: RE: [PHP-WIN] session, session AAAARGH
> >
> >
> > 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]
> >
>
> --
> 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