This will set our session as the current time (md5 encoded)
Open PHP Tags
Start the session :
set our session "sid" as an md5 encoded version of our current time :
set variable $sid as our session :
display our session to the page :
Close PHP tags
Full code :
Live Demo: http://dev.hallwayinsider.com/ses.php
Open PHP Tags
PHP:
<?php
Start the session :
PHP:
session_start();
set our session "sid" as an md5 encoded version of our current time :
PHP:
$_SESSION['sid'] = md5(time());
set variable $sid as our session :
PHP:
$sid = $_SESSION['sid'];
display our session to the page :
PHP:
echo $sid;
Close PHP tags
PHP:
?>
Full code :
PHP:
<?php
session_start();
$_SESSION['sid'] = md5(time());
$sid = $_SESSION['sid'];
echo $sid;
?>
Live Demo: http://dev.hallwayinsider.com/ses.php
Our next tutorial : Cookies