Marc Serra wrote:
Hi,
I got problem when i want to save object in session.
I got my first page when I create my object and save it to session:
Require 'test.inc.php';
Session_start();
$test = new test();
$test->Load($_Get['id']);
$_SESSION['sav
You can use serialize() to convert an object (or array) into
a string, and store that into the session.
To get back it's original value, use unserialize().
name = 'nick';
$my->comp = 'slow';
$store_this = serialize($my);
// $store_this has value:
// O:8:"stdClass":2:{s:4:"name";s:4:"nick";s:4:"comp
2 matches
Mail list logo