Ben php bir acemi değilim, ve ben bir giriş ve çıkış oluşturmak için çalışıyorum. Ama çıkıyor problemleri yaşıyorum. Benim çıkış sadece bu giriş formu çağırır:
<?
session_start();
session_destroy();
?>
<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="checklogin.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Member Login </strong></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="text" id="mypassword"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>
My problem is, when I try to press the back button in the browser. Whoever user is using it can still access what is not supposed to be accessed when a user hasn't logged in. Do I need to add a code on the user page? I have this code on the user page:
<?
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>
Eğer ben bir komut dosyası, kullanıcı geri düğmesini tıkladığında tekrar kullanıcı adınızı ve şifrenizi girmenizi isteyecektir böylece yapacağını ne tavsiye edebilirsiniz.