到目前为止,你已经了解了足够多的PHP了。该写个小程序练手了。
用户注册系统
写一个index.php页面,有用户名和密码表单,post提交到check.php,输出用户名和"用户名+密码"的md5值
本地建立一个mysql数据库,名叫segmentfault,建立一个表user,字段username password将上题check.php接收到的内容存入
我们先完成HTML部分:
- <!DOCTYPE HTML>
- <html>
- <head>
- <title>注册</title>
- </head>
- <body>
- <h1>注册</h1>
- <form action="check.php" enctype="application/x-www-form+xml" method="post">
- <p>
- <label for="name">邮箱</label>
- <input name="name" required type="email" placeholder="请填写有效邮箱"></input>
- </p>
- <p>
- <label for="passphrase">密码</label>
- <input name="passphrase" required type="passphrase"></input>
- </p>
- <p>
- <input type="submit" value="提交"></input>
- </form>
- </body>
- </html>
新闻热点
疑难解答