Session_unset - session_destroy issue

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi all,

I am having trouble with session_destroy - session_unset and $_SESSION = array()... I am trying to STOP and destroy all session vars......


with the simple code test below I would think it would echo test 1 BUT FAIL on test2 
- however it shows both for me...

how do I UNSET - DESTROY SESSIONS?


<?php


session_start();

$_SESSION['var1'] = 'test1';
echo '<br /> test1 '. $_SESSION['var1'].' ';

session_unset();
session_destroy();
$_SESSION = array();


$_SESSION['var1'] = 'test2';

echo '<br /> test2 ' . $_SESSION['var1'];



?>


--
Thanks,
Dave - DealTek
dealtek@xxxxxxxxx
[db-3]


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux