相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
php注冊審核重點解析(數(shù)據(jù)訪問)

關(guān)于審核,如發(fā)表文章的審核、員工請假的審核、藥品申請的審核等等,代碼大同小異。
一.注冊功能(zhece.php chuli.php)
1.zhece.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <form method="post" action="chuli.php"> <div style="margin:10px 500px"> <h2 > 注冊頁面</h2> <div>用戶名:<input type="text" name="users"/></div><br /> <div>密碼:<input type="text" name="pwd"/></div><br /> <div>姓名:<input type="text" name="name"/></div><br /> <div>性別:<input type="text" name="sex"/></div><br /> <div>生日:<input type="text" name="birthday"/></div><br /> <input type="submit" value="注冊" /> <a href="denglu.php" rel="external nofollow" >已有賬號,立即登錄</a> </div> </form> <body> </body> </html>