PHP SESSION
Posted: Sat Oct 03, 2009 1:57 am
Hello,
After executing this line, there is a file created in the tmp folder
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
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