首页 > 开发 > PHP > 正文

php校验表单检测字段是否为空的方法

2024-05-04 23:33:01
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php校验表单检测字段是否为空的方法,涉及php验证表单的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php校验表单检测字段是否为空的方法。分享给大家供大家参考。具体如下:

php校验表单,检测字段是否为空,当表单中有未填写的字段,则会显示错误信息。

 

 
  1. <html> 
  2. <body> 
  3. <form METHOD="POST" ACTION="ErrorCheck.php"> 
  4. <h1>Contact Information</h1> 
  5. <label>Nickname:</label> 
  6. <input TYPE="TEXT" NAME="nickname"> 
  7. <label>Title:</label> 
  8. <input TYPE="TEXT" NAME="title"> 
  9. <br /> 
  10. <input TYPE="SUBMIT" VALUE="Submit"> 
  11. <br /> 
  12. <input TYPE="RESET" VALUE="Clear the Form"> 
  13. </form> 
  14. </body> 
  15. </html> 

php后端代码,保存为: ErrorCheck.php

 

 
  1. <html> 
  2. <body> 
  3. <?php 
  4. $errorcount=0
  5. if (!trim($_POST['nickname'])) { 
  6. echo "<br /><b>Nickname</b> is required."; 
  7. $errorcount++; 
  8. if (!trim($_POST['title'])) { 
  9. echo "<br /><b>Title</b> is required."; 
  10. $errorcount++; 
  11. if ($errors > 0) 
  12. echo "<br /><br />Please use your browser's back button " . 
  13. "to return to the form, and correct error(s)"; 
  14. ?> 
  15. </body> 
  16. </html> 

trim()函数可以去除字符串中的前后空字符

 

 
  1. " " (ASCII 32 (0×20)), an ordinary space. 
  2. "/t" (ASCII 9 (0×09)), a tab. 
  3. "/n" (ASCII 10 (0x0A)), a new line (line feed). 
  4. "/r" (ASCII 13 (0x0D)), a carriage return
  5. "/0″ (ASCII 0 (0×00)), the NUL-byte. 
  6. "/x0B" (ASCII 11 (0x0B)), a vertical tab. 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表