最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

新手 请问php判断表单文本是否为空的有关问题

来源:http://erdangjiade.com/topic/79675.html 你好,世界。 2017-10-04 21:03浏览(0)

新手在线等 请教php判断表单文本是否为空的问题
html文件
<html xmlns=http://www.w3.org/1999/xhtml>
<head><meta http-equiv=Content-Type content="text/html;charset=gb2312">
</head>
<body>
<form id="form1" name="form1" method="post" action="pictype.php">

<p align="center">核桃种类:
<input type="text" name="pictype" id="pictype">
<input type="submit" name="button" id="button" value="提交">
</p>

</form>
</body>

</html>

php文件

<?php
require_once("conn.php");
$pictype=$_post['pictype'];
if($pictype=="")
{echo "没有填写种类";}
else
{

echo "添加种类成功";
}
?>

总是显示没有填写种类请问我哪里出错了?谢谢
------解决思路----------------------
==是大小和数值都相等,你试试把if($pictype=="")改成if(!$pictype)看下
------解决思路----------------------
是 $_POST['pictype'] 不是 $_post['pictype'];
------解决思路----------------------
$_POST大写

1 2