SCook Posted September 13, 2006 Share Posted September 13, 2006 Hi gang,I seem to be having trouble assigning new values to session variables that I've created after they've received an initial values, like so:$_SESSION['var'] = 25.5;Then I try to do this:$_SESSION['var'] = 30.1;and I get as an output 0. What's with that? Thanks. Link to comment https://forums.phpfreaks.com/topic/20626-clearing-out-session-variables/ Share on other sites More sharing options...
obsidian Posted September 13, 2006 Share Posted September 13, 2006 you may have to be a little more specific. are you using session_start() at the top of your pages? also, are you assigning values on one page and then trying to access them from another, or are they all on the same page? Link to comment https://forums.phpfreaks.com/topic/20626-clearing-out-session-variables/#findComment-91101 Share on other sites More sharing options...
SCook Posted September 13, 2006 Author Share Posted September 13, 2006 Yes, I am using session_start at the tops of each page, as I'm using a session-based secure login.Now, what's happening is that these values are assigned on the final order page, and then for example, the customer goes back to the home page and places another order. They then submit it, and it goes to the final order page, where the order info, quantity, price, etc. are reassigned to the session varibles. Then these are read further down in the page. I don't have to do this, but some of these values are used again, so it's a convenient method.Now, because the session variables are still holding the info from the last order, they don't seem to accept new values. Link to comment https://forums.phpfreaks.com/topic/20626-clearing-out-session-variables/#findComment-91105 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.