php登入不用資料庫的實作方法:1、建立好一個index.php檔案;2、建立form登入表單;3、透過「if($user=='user' && $pwd==' pwd'){...}”方法實現使用者判斷登入即可。
本文操作環境:Windows7系統、PHP7.1、Dell G3。
php登入不用資料庫怎麼實作?
php不用資料庫設計登入介面
直接將帳號密碼POST 到另一個PHP 接受。
index.php
<form name="form1" method="post" action="confirm.php"> <p>用户名:<input type="text" name="user"></p> <p>密码:<input type="password" name="pwd"></p> <p><input type="submit" ></p> </form>
confirm.php
<?php $user = isset($_POST['user'])? $_POST['user'] : ''; $pwd = isset($_POST['pwd'])? $_POST['pwd'] : ''; if(empty($user) || empty($pwd)){ echo '用户名和密码不能为空'; exit(); } if($user=='user' && $pwd=='pwd'){ echo '登陆成功'; }else{ echo '用户名或密码错误'; } ?>
#推薦學習:《PHP影片教學》
以上是php登入不用資料庫怎麼實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!