Re: [PHP] Erase the cookie sessions

2002-10-08 Thread Max Buvry
Max Buvry wrote: > > Marek Kilimajer wrote: > > > > You miss closing } > > > > Thanks, but that's a copy-paste error and that's not my problem really. > > mb Solved : my solution for information (before test with url !) 5 ) { $cook_param= session_get_cookie_params(); $life_time= $cook

Re: [PHP] Erase the cookie sessions

2002-10-08 Thread Max Buvry
Marek Kilimajer wrote: > > You miss closing } > Thanks, but that's a copy-paste error and that's not my problem really. mb -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Erase the cookie sessions

2002-10-08 Thread Marek Kilimajer
You miss closing } Max Buvry wrote: >Hi, > >I wish test the session. I use php 4.2.3 et session.auto_start is 1. > >My first example is : > > > >Session example > > >if ( !isset($_SESSION['count']) ) >{ > $_SESSION['count']= 1; >} >else >{ > $_SESSION['count']++; >} > >if ( $_SESSION['count'

[PHP] Erase the cookie sessions

2002-10-08 Thread Max Buvry
Hi, I wish test the session. I use php 4.2.3 et session.auto_start is 1. My first example is : Session example "; echo "hello ! : $cpt times"; session_unset(); session_destroy(); } ?> I don't find the solution to use setcookie ; I try the two instructions above (the script is