我试图将数据插入到我的 mysql 数据库中。它成功插入数据,但问题是每次我加载页面时都会收到以下错误。
Notice: Undefined index: comment in
C:\wamp\www\CMS\addnews.php on line 42
Call Stack
# Time Memory Function Location
1 0.0004 674184 {main}( ) ..\addnews.php:0
我知道 mysql 扩展已正式贬值,所以请不要对此发表评论。
这是我的代码
<form id="insNews" name="insNews" method="POST" action="addnews.php">
<textarea rows="20" cols="90" name="comment"></textarea>
<input type="submit" name="InsertNews" id="InsertNews">
<?php
include 'db.php';
$comment=$_POST['comment']; // **ERROR HERE**
$tablename="news";
$sql="INSERT INTO $tablename(news_content)VALUES('$comment')";
if(isset($_POST['InsertNews']))
{
mysql_query($sql);
}
?>