i am try to use session management when i try to invoke the function page_open() i get the following error .
Fatal error: Call to unsupported or undefined function page_open() in /home/sites/site130/web/session.php3 on line 2
The code i am using is
the file is called session.php3
<?php
page_open(array("sess" => "Example_Session"));
$sess->register("cki");
$cki = "paul";
?>
<a href=" <?php $sess->purl( "page.php3") ?>">ppp</a>
<?page_close();?>
all i want is a simple working example of session management . Any help would be appreciated thanks ...