欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-16 22:38:23
...
文章id传不进去!!!
$id=$row['id'];,已经测试有这个值。。
PHP code



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没有值
文章id传不进去!解决方案

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频