PHP開發(fā) 小型論壇教程之註冊(cè)-1
建立reg.html 檔案
我們要做的註冊(cè)頁面如下圖
使用了table表格+css樣式進(jìn)行佈局
#程式碼如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>用戶注冊(cè)</title> <style type="text/css"> table{ height: 300px; } input{ width: 190px; height: 25px; } .title{ background-color:#B10707 ; color: white; border: none; } .but{ width: 140px; height: 43px; } .spa{ margin-left: 10px; } </style> <script type="text/javascript"> function checkinput() { if(myform.username.value=="") { alert("請(qǐng)輸入你的賬號(hào)"); myform.username.focus(); return false; } if (myform.password.value=="") { alert("請(qǐng)輸入密碼"); myform.password.focus(); return false; } if(myform.password.value != myform.password1.value){ alert("你輸入的兩次密碼不一致,請(qǐng)重新輸入!"); myform.password.focus(); return false; } } </script> </head> <body> <form method="post" action="reg.php" onsubmit=" return checkinput();" name="myform"> <table width="400px" border="1" cellpadding="12" cellspacing="1" align="center"> <tr> <td colspan="2" class="title">用戶注冊(cè)<span class="spa">[<a style="color: white" href="index.php">返回首頁]</a></span></td> </tr> <tr> <td width="110px">會(huì) 員 ID</td> <td><input type="text" name="username" autocomplete="off"></td> </tr> <tr> <td width="110px">密 碼</td> <td><input type="password" name="password" autocomplete="off"></td> </tr> <tr> <td width="110px">確認(rèn)密碼</td> <td><input type="password" name="password1"></td> </tr> <tr> <td width="110px">郵 箱</td> <td><input type="email" name="email"></td> </tr> <tr> <td colspan="2" align="center"> <button class="but" style="text-align: center">立即注冊(cè)</button> </td> </tr> </table> </form> </body> </html>
下一步將我們?cè)]冊(cè)填寫的資訊提交到reg.php頁面處理