网站在进行新用户注册时,都会将用户的注册信息存入数据库中,需要的时候再进行提取。今天写了一个简单的实例。
主要完成以下几点功能:
(1)用户进行注册,实现密码重复确认,验证码校对功能。
(2)注册成功后,将用户进行插入数据库中进行保存。
(3)将数据库表中数据进行提取,并打印。
1.注册表单在以前的几篇博客中,分享过注册及登录表单的代码。这次的代码,大致相同,只是略有变化。仅作为实例探讨
<html> <head> <title>注册页面</title> <meta content-type:"text/html" charset="utf-8"> </head> <body> <h1>新用户注册</h1> <hr> <form method="post" action="regsubmit.php"> <table> <tr> <td>请输入用户名:<input type="text"></td> </tr> <tr> <td>请输入密码: <input type="password"></td> </tr> <tr> <td>请确认密码: <input type="password"></td> </tr> <tr> <td>请输入验证码:<input type="text"><img src="http://www.likecs.com/regauth.php"></td> </tr> <tr> <td><input type="submit" value="注册"> <input type="reset" value="重置"></td> </tr> </table> </form> </body> </html>