Posted by jimbojones230 on 10/13/05 23:20
Hello,
I'm attempting to pass all of the current values of an object to a new
page using sessions. This is basically the code I've tried:
page1.php
<?php
session_start();
include "class.php";
$object = new Class();
$object->function();
$_SESSION['object']=$object;
?>
page2.php
<?php
session_start();
include "class.php";
$object = $_SESSION['object'];
$object->function();
?>
Can anyone tell me what I'm doing wrong, or if it's even possible to
send an object using sessions? I get a fatal error when it tries to
call the function on the second page.
Thanks
Navigation:
[Reply to this message]
|