ホームページ >バックエンド開発 >PHPチュートリアル >PHP とデータベースに関する重要な質問への回答
php とデータベースに関する重要な質問に答えてください
上級専門家の皆様、login.html でログインをクリックした後、userController.php に直接移動しますが、ログインが成功したかどうかを確認することが目的です。 html が失敗した場合は、error.html にジャンプしますが、失敗しました。もう 1 つの質問は、ログインに成功した後にログイン情報を main.html に渡す方法です。あなた
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> login.html <html> <head> <title>用户系统登录</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body> <form name="loginfrom" action="userController.php?flag=login"method="POST"> <table background="resource/background.jpg" width= "100%" height= "100%" border= "0 "> <tr> <td align= "center " valign= "middle "> <table align="center"> <tr> <th>角色</th> <td><input type="radio" name="account" value="admin" checked>管理员 <input type="radio" name="account" value="teacher">教师 <input type="radio" name="account" value="student">学生 </td> <tr> <th>用户名</th> <td><input type="text" name="user_name" ></td> </tr> <tr> <th>密码</th> <td><input type="password" name="user_password" ></td> </tr> <tr> <td align="right" colspan="2"><a href="register.html">新用户注册</a><button type="submit" name="submit">登录</button></td> </tr> </table> </td> </tr> </table> </form> </body> </html>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> dbconn.class.php <?php class DBconn{ private static $db_host="localhost"; private static $db_user="root"; private static $db_password="linux"; private static $db_name="sharewebDb"; private static $connection; static function getConn(){ $connection=new mysqli($db_host,$db_user,password,$db_name); return $connection; } } ?>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> userModel.php <?php include("dbconn.class,php"); クラス userModel{ 関数 checklogin($userid,$userpwd,$useraccount){ $mysqli=DBconn::getConn(); $結果=''; スイッチ($useraccount){ ケース「先生」:{ $sql="select t_id,t_name,t_dep from ter_info where t_id=? and t_pwd=?"; $result=$mysqli->prepare($sql);: $result->bind_param("ss",$user_id,$user_password); $user_id=$userid; $user_password=$userpwd; $result->execute();break; } ケース「学生」:{ $sql="s_id=? および s_pwd=? の stu_info から s_id、s_name、s_dep を選択します。"; $result=$mysqli->準備($sql); $result->bind_param("ss",$user_id,$user_password); $user_id=$userid; $user_password=$userpwd; $result->execute();break; } } $result->bind_result($user_id,$user_name,$user_dep); while($result->fetch()){ $userlist=array( 'user_id'=>$user_id、 'user_name'=>$user_name, 'user_dep'=>$user_dep ); } $result->close(); $mysqli->close(); ユーザーリストを返します。 } ?> <div class="clear"></div>