<?
require "./session.class.php";
session_start();
$Session = $HTTP_SESSION_VARS["Session"];
if(!is_object($Session)){
$Session = new ClsSession();
@session_register("Session");
$HTTP_SESSION_VARS["Session"] = $Session;
}
$Session->login=1;
$Session->set_value("arr_web",array("http://www.yahoo.com","www.phpclasses.org","www.yawill.com"));
$Session->set_value("arr_href",array("http://www.yahoo.com","www.phpclasses.org","www.yawill.com"));
$Session->p($Session);
?>
|