Storing and Retrieving Objects
<? class apple { var $flavor="sweet"; } $app = new apple(); $stored = serialize( $app ); print $stored; ?>