私のlogout.phpコード
<?php
$past = time(0);
setcookie(ID_my_site, gone, $past);
setcookie(Key_my_site, gone, $past);
header("Location: index.php");
?>
ユーザーがブラウザを閉じたときにログアウトし、ブラウザの戻るボタンをクリックした場合、このコードに何を追加する必要がありますか??
私のlogin.phpコード
<?php
$page = "login";
mysql_connect("localhost","root","");
mysql_select_db("nell");
if(isset($_COOKIE['ID_my_site']))
{
$username = $_COOKIE['ID_my_site'];
$pass = $_COOKIE['Key_my_site'];
$check = mysql_query("SELECT * FROM users WHERE username = '$username'")or die(mysql_error());
while($info = mysql_fetch_array( $check ))
{
if ($pass != $info['password'])
{ }
else
{header("Location: members.php");}
}
}
if (isset($_POST['submit'])) {
if(!$_POST['username'] | !$_POST['pass'])
{ header("Location: error.php");}
if (!get_magic_quotes_gpc()) {
$_POST['email'] = addslashes($_POST['email']);
}
$check = mysql_query("SELECT * FROM users WHERE username = '".$_POST['username']."'")or die(mysql_error());
$check2 = mysql_num_rows($check);
if ($check2 == 0)
{ header("Location: error2.php");}
while($info = mysql_fetch_array( $check ))
{
$_POST['pass'] = stripslashes($_POST['pass']);
$info['password'] = stripslashes($info['password']);
$_POST['pass'] = md5($_POST['pass']);
if ($_POST['pass'] != $info['password'])
{ header("Location: error3.php");}
else
{
$_POST['username'] = stripslashes($_POST['username']);
$hour = time() + 3600;
setcookie(ID_my_site, $_POST['username'], $hour);
setcookie(Key_my_site, $_POST['pass'], $hour);
header("Location: members.php");
}
}
}
else
{ }
?>
ユーザーがブラウザを閉じたとき、およびブラウザの戻るボタンをクリックしたときに、ユーザーを自動的にログアウトさせたいです。