当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-17 14:26:22 浏览: 评论:0 

这篇文章主要介绍了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.  } 
  9.  if (!trim($_POST['title'])) { 
  10.    echo "<br /><b>Title</b> is required."; 
  11.    $errorcount++; 
  12.  } 
  13.  if ($errors > 0) 
  14.    echo "<br /><br />Please use your browser's back button " . 
  15.     "to return to the form, and correct error(s)"; 
  16.  ?> 
  17. </body> 
  18. </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程序设计有所帮助。

Tags: php校验表单 php检测字段

分享到: