>  기사  >  백엔드 개발  >  文章id传不进去!解决方案

文章id传不进去!解决方案

WBOY
WBOY원래의
2016-06-13 10:17:051460검색

文章id传不进去!!!
$id=$row['id'];,已经测试有这个值。。

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><div id="addComment" style="width:800px; height:350px; margin-left:0px;"><form action="addcommentProcess.php?id=%24id" method="post">
<input type="submit" value="发表评论"> <input type="text" name="user_comment"><br><textarea name="article_comment" rows="50" cols="152" style="width: 500px; height: 295px"> </textarea>
</form></div>


addcommentProcess.php代码如下
$id=$_GET['id'];
$article_comment=$_POST['article_comment'];
$conn=mysql_connect("localhost","root","5200");
if(!$conn){
die ("连接失败".mysql_error());
}
mysql_select_db("blog",$conn) or die(mysql_error());

mysql_query("set names utf8");

$sql="insert into comment (id,article_comment) value ('$id','$article_comment')";
//我自己在mysql里面输入insert into comment (id,article_comment) value ('8','aaa');可以插入内容。

mysql_query("set names utf8");

$res=mysql_query($sql) or die(mysql_error());
if($res){

header("location:index.php");
}
?>

点击 发表评论的时候 显示错误:

Incorrect integer value: '$id' for column 'id' at row 1




------解决方案--------------------
当然是传不过去啦

$id=$_GET['id'];
得到的是 '$id'

因为你在表单页并没有传递 $id 的值


------解决方案--------------------
八成是$id没有值
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.