$_POST[]问题
看PHP100的视频教程中的留言板部分,里面有句是这么写的:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> if($_POST['submit']) { $sql = "insert into msg (id, userid, contant, oppeardata) values ('', '999', '$_POST[contant]', Now())"; print $sql; $sql_return = mysql_query($sql); if(!$sql_return) { print("发表留言错误").mysql_error(); exit(); } print("发表留言成功");
if (isset($_POST['submit'])) <br><font color="#e78608">------解决方案--------------------</font><br>第一个notice是因为你调用了不存在的变量($_POST['submit'])<br><br>第二个$_POST[submit]是因为你submit两边没有引号引起来,应该$_POST['submit']或者$_POST["submit"] <div class="clear"> </div>