Start a session


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 244 Bytes

HITS: 207

  1. <?php
  2. // Start the session
  3. session_start();
  4. ?>
  5. <!DOCTYPE html>
  6. <html>
  7. <body>
  8. <?php
  9. // Set session variables
  10. $_SESSION["favcolor"] = "green";
  11. $_SESSION["favanimal"] = "cat";
  12. echo "Session variables are set.";
  13. ?>
  14. </body>
  15. </html>

comments powered by Disqus