user261002
user261002

Reputation: 2252

php inserting object into sessions

is it possible to insert an object into a session instead of creating a different sessions (in PHP)???

Upvotes: 1

Views: 129

Answers (1)

brettkelly
brettkelly

Reputation: 28205

$_SESSION['myObj'] = $myObj;

(Where $myObj is an object)

Upvotes: 3

Related Questions