session_start.inc 522 Bytes
<?PHP 
//******************************************************************************
//* セッションスタート処理
//* 
//* セッション変数  
//* 
//* これらのセッション変数を作成しておく
//******************************************************************************

session_cache_limiter('private must-revalidate');
$cache_limiter = session_cache_limiter();
session_cache_expire (30);
$cache_expire = session_cache_expire();

session_start();

//システム名称
$PHP_SYSNAME="F-lab";
session_register("PHP_SYSNAME");	

?>