Get session variable values


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 273 Bytes

HITS: 218

  1. <?php
  2. session_start();
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <body>
  7. <?php
  8. // Echo session variables that were set on previous page
  9. echo "Favorite color is " . $_SESSION["favcolor"] . ".<br>";
  10. echo "Favorite animal is " . $_SESSION["favanimal"] . ".";
  11. ?>
  12. </body>
  13. </html>

comments powered by Disqus