Jump to content

if (!isset($_SESSION['current_file']))


otuatail

Recommended Posts

Hi I have a web page that refreshes every 2 seconds for testing purpose. I want to write to a unique file each time I run the web page test.

 

I have this

 

if (!isset($_SESSION['current_file']))
{
    $file_name = "2-" . time() . ".txt";
    $_SESSION['current_file'] = $file_name;
}
 
 
When I echo this file na,e out it changes on each page refresh, but the session should be set after the first instance of the page.
 
 
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.