function session_chk() { $period_time = 180; session_start(); if (!empty($_SESSION['last_access'])) { if (mktime() - $_SESSION['last_access'] > $period_time) { echo 'セッション有効期限切れです。もう一度トップページからやり直してください' . "<br/>" . return_top(); logout_s(); exit; } else { $_SESSION['last_access'] = mktime(); } } else { $_SESSION['last_access'] = mktime(); } }
<br> <form action="<?php echo DELETE_RESULT; ?> " method="POST"> <input type="submit" name="YES" value="はい"style="width:100px"> <input type="hidden" name="id" value="<?php echo $_SESSION['userID']; ?> "> <input type="hidden" name="mode" value="RESULT"> </form><br> <form action="<?php echo RESULT_DETAIL; ?> " method="POST"> <input type="submit" name="NO" value="詳細画面に戻る"style="width:100px"> <input type="hidden" name="mode" value="DETAIL"> </form> <?php } else { echo 'データの取得に失敗しました。次記のエラーにより処理を中断します:' . $result; } } echo return_top(); ?> </body> </html>
<?php require_once '../util/defineUtil.php'; require_once '../util/scriptUtil.php'; require_once '../util/dbaccessUtil.php'; ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <?php print 'カートに追加しました'; $code = !empty($_POST["code"]) ? $_POST["code"] : ""; var_dump($_POST["code"]); if (empty($_COOKIE["code"])) { setcookie('code', $code, time() + 3600, '/kagoyume/'); } else { setcookie('code', $_COOKIE["code"] . ' ' . $code, time() + 3600, '/kagoyume/'); } return_top(); ?> </body> </html>
function access_ck() { echo 'アクセスルートが不正です。もう一度トップページからやり直してください<br>'; echo return_top(); die; }