用戶註冊(cè)的無樣式實(shí)現(xiàn)
簡(jiǎn)易的表單註冊(cè)功能,使用者輸入使用者名稱和密碼進(jìn)行註冊(cè),執(zhí)行post方式的提交
#介面如下:
register.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <hr size="1"> <form action="add.php" method="post" > 用戶:<input type="text" name="username"/><br> 密碼:<input type="password" name="password" /><br> 確認(rèn)密碼:<input type="password" name="repassword" /><br> <input type="submit" name="register" value="注冊(cè)"> </form>