相思资源网 Design By www.200059.com
本文实例讲述了PHP表单与验证。分享给大家供大家参考,具体如下:
Demo1.php
<"htmlcode"><"htmlcode"><form method="post" action="Demo4.php"> 姓名:<input type="text" name="username" /><br /> <input type="submit" value="提交" /> </form>Demo4.php
<"htmlcode"><form method="post" action="Demo6.php"> 用户名:<input type="text" name="username" /><br /> 密 码:<input type="text" name="password" /><br /> 验证码:<input type="text" name="code" size="5" />1234<br /> 邮 箱:<input type="text" name="email" /><br /> 介 绍:<textarea rows="6" cols="25" name="content"></textarea><br /> <input type="submit" value="提交" name="send" /> </form>Demo6.php
<"<script>alert('用户名不能小于两位或者大于10');history.back();</script>"; exit; } //密码不能小于六位 if(strlen($password) <6){ echo "<script>alert('密码不能小于6位');history.back();</script>"; exit; } //验证码必须是 4 位,必须是数字 if(strlen($code)!=4 || !is_numeric($code)){ echo "<script>alert('验证码必须是 4 位并且是纯数字');history.back();</script>"; exit; } //验证电子邮件 if(!preg_match('/^([\w\.]{2,255})@([\w\-]{1,255}).([a-z]{2,4})$/',$email)){ echo "<script>alert('电子邮箱不合法');history.back();</script>"; exit; } echo '用户名:'.$username.'<br/>'; echo '电子邮件:'.$email.'<br/>'; echo '个人介绍:'.$content; "_blank" href="https://www.jb51.net/Special/623.htm">PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php面向对象程序设计入门教程》、《PHP网络编程技巧总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》希望本文所述对大家PHP程序设计有所帮助。
标签:PHP,表单,验证
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无PHP入门教程之表单与验证实例详解的评论...