Storing an object in $_SESSION
Posted: Tue Nov 18, 2003 8:00 am
can this be done? does not seem to be working for me
if not is there a way around it?
if not is there a way around it?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
include 'myclass.php';
session_start();
$some_object=$_SESSION['some_object'];
$some_object->do_something();