Code: Select all
<?php
session_start();
$_SESSION['test'] = 'testing';
?>The file contains the following :
test|s:6:"testing";
I can understand the first and last (it is obvious
Can you please explain me the format of the file...?
Thanks
Mahesh
Moderator: General Moderators
Code: Select all
<?php
session_start();
$_SESSION['test'] = 'testing';
?>