<?php
session_start();
$_SESSION['name'] = 'Alex';
?>
Is a PHP session varriable the session ID ? if not , then what is the exact use of a session variable when we already have a unique session ID ??? Can someone please explain ? an example would help much !
PHP uses the SID to recreate
$_SESSIONfrom the session storage.