Session:在電腦中,尤其是在網路應用中,稱為「會話控制」。 Session物件儲存特定使用者會話所需的屬性及設定資訊。
登入表單處理 (建議學習:PHP影片教學)
<?php session_start(); include "inc/conn.php"; $username=$_POST[user]; $password=$_POST[pwd]; $sql=mysql_query("select * from user where username='".$username."' and password='".$password."'"); if ($result = mysql_fetch_array($sql)){ $_SESSION[username]=$username; //其他页面通过判断是否设置$_SESSION[username]来判断登录状态 ?> <scriptlanguage="javascript"> alert("登录成功");window.location.href="file.php"; </script> <?php }else{ ?> <scriptlanguage="javascript"> alert("对不起,您输入的用户名或密码不正确,请重新输入!");window.location.href="index.php"; </script> <?php } ?>
以上是php判斷是否登入的詳細內容。更多資訊請關注PHP中文網其他相關文章!