Re: two php scripts with same $_SESSION variables

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

 



Jean-Christophe Roux wrote:
Hello,
I have folder A with the following php script:
<?php
session_start();
$_SESSION['dummy']=10;
echo $_SESSION['dummy'];
?>
in folder B (same level as A), there is
<?php
session_start();
echo $_SESSION['dummy'];
?>
when running the script in B, in can see the value 10. How can I make sure that the $_SESSION['dummy'] is not shared between the two scripts? I could change the name but that would not be convenient.

Thank you







____________________________________________________________________________________ We won't tell. Get more on shows you hate to love (and love to hate): Yahoo! TV's Guilty Pleasures list. http://tv.yahoo.com/collections/265

Session vars are available for every script that is run after the session has started. If you want to stop the session for te remainder of the script, you can use session_write_close().

http://uk2.php.net/session

Darren

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[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