首页 > 作文

PHP实现的用户注册表单验证功能简单示例

更新时间:2023-04-06 15:18:04 阅读: 评论:0

本文实例讲述了php实现的用户注册表单验证功能。分享给大家供大家参考,具体如下:

注册界面

regis看开学第一课读后感ter.html

  <h1>用户注册</h1>  <form method="post" action="register_verify.php">    <input type="text" placeholder="用户名" name="urname"><br><br>    <input type="password" placeholder="密码" name="password"><br><br>    <input type="password" placeholder="重复密码" name="password2"><br><br>    <label>性别:      <input type="radio" name="x" value="男" checked="checked">男      <input type="radio" name="x" value="女">女</label><br><br>    <input type="email" placeholder="邮箱" name="email"><br><br>    <button class="btn" type="submit">注册</button>  </form>

register_verify.php

<?phprequire "mysql.php";      //导入mysql.php访问数据库$urname=$_post['urname'];$攀登者观后感password=$_post['password'];$password2=$_post['password2'];$x=$_post['x'];$email=$_post['email'];if(checkempty($urname,$password,$password2,$x,$email)){  if(checkpwd($password,$password2)){    if(checkemail($email)){      if(inrt($urname,$password,$x,$email))        echo"注册成功";    }  }}//方法:判断是否为空function checkempty($urname,$password,$password2,$x,$email){  if($urname==null||$password==null||$password2==null){    echo '<html><head><script language="javascript">alert("用户名或密码为空");</script></head></html>'       . "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";  }  el{    if($x==null){      echo '<html><head><script language="javascript">alert("性别为空");</script></head></html>' .          "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";    }    elif($email==null){      echo '<html><head><script language="javascript">alert("邮箱为空");</script&要是造句gt;</head></html>' .          "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";    }    el{      return true;    }  }}//方法:检查两次密码是否相同function checkpwd($password,$password2){  if($password==$password2)    return true;  el    echo '<html><head><高考档案script language="javascript">alert("两次密码不一致");</script></head></ht考研的辅导机构ml>' .        "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";}//方法:邮箱格式验证function checkemail($email){  $preg = '/^(\w{1,25})@(\w{1,16})(\.(\w{1,4})){1,3}$/';  if(preg_match($preg, $email)){    return true;  }el{    echo '<html><head><script language="javascript">alert("邮箱格式有误");</script></head></html>' .        "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";  }}//方法:将数据插入数据库中function inrt($urname,$password,$x,$email){  $conn=new mysql();  $sql="inrt into ur value (null,'$urname','$password','$x','$email')";  $result=$conn->sql($sql);  if($result){    return true;  }  el{    echo '<html><head><script language="javascript">alert("写入数据库失败");</script></head></html>' .        "<meta http-equiv=\"refresh\" content=\"0;url=register.html\">";  }  $conn->clo();}

验证码和数据库的实现方法前面写过,这里不再赘述。

可参考前面两篇文章:

php封装mysqli基于面向对象的mysql数据库操作类

php通过gd库实现验证码功能

ps:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:

javascript正则表达式在线测试工具:

正则表达式在线生成工具:

更多关于php相关内容感兴趣的读者可查看本站专题:《php程序设计安全教程》、《php安全过滤技巧总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家php程序设计有所帮助。

本文发布于:2023-04-06 15:18:03,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/92abd6a4367bdbe0612c34c7110de806.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP实现的用户注册表单验证功能简单示例.doc

本文 PDF 下载地址:PHP实现的用户注册表单验证功能简单示例.pdf

标签:数据库   密码   为空   方法
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图