• Welcome to ForumKorner!
    Join today and become a part of the community.

Simple Secure PHP sessions.

Reputation
0
This will set our session as the current time (md5 encoded)
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​
 
Top