使用者登入的無樣式實現

輸入使用者名稱密碼進行登入操作進行表單提交

程式碼如下:

login.html

<!DOCTYPE html>
 <html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Title</title>
 </head>
 <body>
 <hr size="1">
 <form action="success.php" method="post" >
    用户:<input type="text" name="username"/><br>
    密码:<input type="password" name="password" /><br>
    <input type="submit" name='login' value="登录">
 </form>


#
繼續學習
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <hr size="1"> <form action="success.php" method="post" > 用户:<input type="text" name="username"/><br> 密码:<input type="text" name="password" /><br> <input type="submit" name='login' value="登录"> </form>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!