nembrionic Posted March 14, 2006 Share Posted March 14, 2006 PHP Version 4.4.1Here's one for ya all:My script starts a session.It then pulls some data from MySQL database.It saves the pulled variables and values in $_SESSION.I want to use the new variables and their values straight away.I print the contents of $_SESSION and I see they are all in there like they should.Very nice.However, it will not echo/print them. They are 'empty'BUT...If I refresh the page, it WILL show them.So, it doesn't show them the FIRST time, but they WILL show them after a refresh, or visiting another page in my project.Anyone got a clue why it shows the variables are neatly stored but not printed the first time? Quote Link to comment Share on other sites More sharing options...
nembrionic Posted March 14, 2006 Author Share Posted March 14, 2006 Hmmm somebody just told me that the newly inserted variables are NOT global instantly and thus can not be used on the same page (which is weird as they DO show up in the print of $_SESSION).So I'm using $GLOBALS now instead of $_SESSION and it works like a charm. 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.