otuatail Posted June 13, 2017 Share Posted June 13, 2017 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. Quote Link to comment Share on other sites More sharing options...
Solution otuatail Posted June 13, 2017 Author Solution Share Posted June 13, 2017 Sorry guys. Session start was missing. Always the obvious ones. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.