Rumah > Artikel > pembangunan bahagian belakang > php如何用if判断文本框是否等于空
php if不等于空的判断方法:首先通过“$_POST['content'];”获取文本框的内容;然后使用“if($content==""){}else{}”方法判断文本框内容是否为空;最后在浏览器中执行相关文件即可。
PHP要判断表单元素的值是否为空,首先需要提交表单,然后根据name获取表单元素,判断是否为空即可。
示例如下:
<?php if($_POST['sub']){ //获取文本框的内容 $content=$_POST['content']; if($content==""){ echo "文本框内容为空!"; }else{ echo "文本框内容不为空!"; } } ?> <html> <head> <title>演示</title> </head> <body> <form name="form1" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="input" name="content"/> <input type="submit" name="sub" value="提交"/> </form> </body> </html>
更多相关知识,请访问PHP中文网!
Atas ialah kandungan terperinci php如何用if判断文本框是否等于空. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!