相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
php注冊和登錄界面的實現(xiàn)案例(推薦)
當(dāng)初我覺得一個網(wǎng)站上注冊和登錄這兩個功能很神奇,后來自己研究一下發(fā)現(xiàn)其實道理很簡單,接下來看一下怎么實現(xiàn)的吧。。。。
我在我的電腦上建了幾個文件:
login.html (登錄頁面)
register.html(注冊頁面)
success.html(登錄成功跳轉(zhuǎn)頁面)
return.html(注冊成功頁面)
login.php
register.php
登錄界面和注冊界面以及success.html并沒有
什么都是些html標記如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>登錄界面</title> </head> <body> <form method="post" action="login.php"> 賬號: <input type="text" name="usernamel"><br/><br/> 密碼: <input type="password" name="passwordl"> <input type="submit" value="登錄" name="subl"> <a >沒有賬號,注冊</a> </form> </body> </html>