PHP uses validation form to detect whether fields are empty

墨辰丷
Release: 2023-03-31 18:16:01
Original
1161 people have browsed it

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

本文实例讲述了php校验表单检测字段是否为空的方法。

具体如下:

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



Contact Information



Copy after login

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



Nickname is required.";
   $errorcount++;
 }
 if (!trim($_POST['title'])) {
   echo "
Title is required."; $errorcount++; } if ($errors > 0) echo "

Please use your browser's back button " . "to return to the form, and correct error(s)"; ?>
Copy after login

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

" " (ASCII 32 (0×20)), an ordinary space.
"\t" (ASCII 9 (0×09)), a tab.
"\n" (ASCII 10 (0x0A)), a new line (line feed).
"\r" (ASCII 13 (0x0D)), a carriage return.
"\0″ (ASCII 0 (0×00)), the NUL-byte.
"\x0B" (ASCII 11 (0x0B)), a vertical tab.
Copy after login

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

PHP中数据库实现更安全的永久登录、记住我的功能

php基于cookie实现记录用户名和密码

PHP中使用生成的公钥、私钥进行加密解密的方法

The above is the detailed content of PHP uses validation form to detect whether fields are empty. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!