欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php trim() 表单验证不为空实例

程序员文章站 2022-04-22 18:09:55
...
php trim() 表单验证不为空实例,应该算是入门级的实例了,告诉你如何利用trim函数来删除空格然后判断用户提交的数据是否为空.

contact information

nickname:
title:
first name:
middle name:
last name:
primary email: secondary email:
company name:
office address: home address:
city:
state:
zip:
phone:
birthday:
spouse name: childrens' names:
anniversary:





formerrorcheck.php

 class="brush:php;">nickname is required."; 
	     $errors++; 
	  } 
	 
	  if (!trim($firstname)) { 
	      echo "
first name is required."; $errors++; } if (!trim($lastname)) { echo "
last name is required."; $errors++; } if (!trim($email)) { echo "
primary email address is required."; $errors++; } if ($errors > 0) echo "


please use your browser's back button " . "to return to the form, and correct error(s)";

这是个简单的验证函数: