Modify a session variable


SUBMITTED BY: henry1874w

DATE: June 21, 2017, 11:37 p.m.

FORMAT: Text only

SIZE: 202 Bytes

HITS: 235

  1. <?php
  2. session_start();
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <body>
  7. <?php
  8. // to change a session variable, just overwrite it
  9. $_SESSION["favcolor"] = "yellow";
  10. print_r($_SESSION);
  11. ?>
  12. </body>
  13. </html>

comments powered by Disqus