1

How do I update my session variables without having to log out?

I have this session array that has to be updated:

$data_for_analog_meter = $_SESSION['data_for_analog_meter'];

Any idea is appreciated!

1
  • Currently you "update" $data_for_analog_meter, not the session. Commented Sep 26, 2013 at 8:20

2 Answers 2

1

you're assigning session value to variable, you need to do the reverse, to update session value you need to do:

$_SESSION['data_for_analog_meter'] = $data_for_analog_meter;
Sign up to request clarification or add additional context in comments.

Comments

0

First don't forget to session_start() when you update it, I assume that you started it at the top of that page, and then:

  $_SESSION['name'] = 'NEW VALUE';

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.