我用bootstrap为我的网站制作了一个搜索栏,现在一切都很好,问题是当什么都不输入时也可以使用它。
那么,我如何用php检查这一点,并添加一个最小字母进行搜索呢。
只要给我一个大致的想法,我能做什么!
最简单的解决方案是将required
添加到其中,例如
<input type = "text" name = "yoursearchbox" required>
如果使用HTML5
,则可以使用required
:
<input type="text" name="search" required>
在PHP
中,您可以通过多种方式进行验证,例如:
<?php
if(!isset($_POST["search"]) //The value is not set
||empty(@$_POST["search"]) //The value is empty
||strlen(@$_POST["search"])<1) //The string is shorter than 1 character
{
//Search is empty
}