Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
class foo
{
var $fu;
function foo($fuvar)
{
$this->fu = $fuvar;
}
function display()
{
print '!!!' . $this->fu . '!!!';
}
}
?>
<?php
include ('test_session_object.inc');
session_start();
$_SESSION['sessfu'] = new foo('a foo');
print '<html><body><a href="test_session_object2.php">click here</a></body></html>';
?>
<?php
include ('test_session_object.inc');
session_start();
print '<html><body>';
$_SESSION['sessfu']->display();
print '</body></html>';
?>