Home >Backend Development >PHP Tutorial >关于PHP中的输入验证有关问题

关于PHP中的输入验证有关问题

WBOY
WBOYOriginal
2016-06-13 10:01:371005browse

关于PHP中的输入验证问题
第一次用PHP做东西,我在用PHP做个网上书店,后台管理时管理员在HTML表单中输入图书的基本信息,请问怎样验证输入的信息。比如说书本的页数应该是整数,但当输入文字或其他时能提示出错。我想用正则表达式的,但是不知道怎么写。

------解决方案--------------------
js就可以了
------解决方案--------------------
js验证一遍,提交的php页面再验证一遍。
if(isnumeric(提交的数字))
{
........
}
else
echo '出错了 ';
------解决方案--------------------
js使用正则判断去吧
------解决方案--------------------
该下楼上的程序,别见怪

if(is_int(提交的数字变量)){
........
}
else
echo '出错了 ';

------解决方案--------------------
不会JS就学啊
不学怎么能会呢

Statement:
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