session_start.inc
551 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="総合資金管理システム【はやぶさ君】";
session_register("PHP_SYSNAME");
?>