Initiate session and create a few session variables : Session Variables Create : Cookie Session PHP Source Code


PHP Source Code » Cookie Session » Session Variables Create »

 

Initiate session and create a few session variables




<?php

   // Initiate session and create a few session variables
   session_start();

   // Set the variables. These could be set via an HTML form, for example.
   $_SESSION['username'] "joe";
   $_SESSION['loggedon'] = date("M d Y H:i:s");

   // Encode all session data into a single string and return the result
   $sessionVars = session_encode();
   echo $sessionVars;

?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Cookie Session
» Session Variables Create