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大写
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群