Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. <?php
  2.     session_start();
  3. ?>
  4.  
  5. <html>
  6.     <head>
  7.         <meta charset="utf-8">
  8.         <title>PHP Session</title>
  9.     </head>
  10.     <body>
  11.         <?php
  12.             $_SESSION["fav_color"] = "green";
  13.             $_SESSION["fav_animal"] = "cat";
  14.             echo "Session variables are set.";
  15.         ?>
  16.     </body>
  17. </html>
  18.  
  19. <?php
  20.     session_start();
  21. ?>
  22.  
  23. <html>
  24.     <head>
  25.         <meta charset="utf-8">
  26.         <title>PHP Session</title>
  27.     </head>
  28.     <body>
  29.         <?php
  30.             echo "Favorite color is ".$_SESSION["fav_color"];
  31.             echo '<br>';
  32.             echo "Favorite animal is ".$_SESSION["fav_animal"];
  33.            
  34.             echo '<br>';
  35.             print_r($_SESSION);
  36.         ?>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement