gpt4 book ai didi

php - 我无法使用 php 将信息插入 mysql 数据库

转载 作者:行者123 更新时间:2023-11-29 16:03:27 26 4
gpt4 key购买 nike

我正在尝试将汽车信息插入我的数据库,但每次都会出错。

这是代码

if(move_uploaded_file($file_tmp,"productimages/".$file_name))
{
$sql="INSERT INTO `products`(`ptitle`, `pprice`, `pdesc`, `modal`, `pcate`, `image`,`feat`,`uid`,`edate`) VALUES ('".$title."',".$price.",'".$desc."',".$modal.",".$cate.",'".$file_name."',0,".$_SESSION["uid"].",'".$edate."')";
$result=mysqli_query($con,$sql);
if($result)
{
echo "<script>window.location.href='add-car.php?msg=1'</script>";
}
else
{
echo "<script>window.location.href='add-car.php?error=2'</script>";
}
}
else
{
echo "<script>window.location.href='add-car.php?error=2'</script>";
}

这是数据库: enter image description here

最佳答案

你能试试这个吗?

$sql="INSERT INTO products (ptitle, pprice, pdesc, modal, pcate, image,feat,uid,edate) VALUES ('$title', $price,'$desc','$modal',$cate,'$file_name',0,$_SESSION["uid"],'$edate')";

编辑:-我已经更新了代码。我可以看到你的 data 是 int 和 varchar 的组合。尽量不要对 int 使用引号,而对 varchar 类型保留引号。

关于php - 我无法使用 php 将信息插入 mysql 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55957591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com