I have created an object and assigned values as follows:
$car_object =& new Car();
$car_object->offer = 'Sale';
$car_object->type = 'Sport Car';
$car_object->location = "Buffalo, New york";
How can I store the $car_object inside a session variable?
How can I get the $car_object out from the session variable?
Set to session:
Get from session: