gpt4 book ai didi

php - 插入数据错误代码 23000 mysql pdo php

转载 作者:行者123 更新时间:2023-11-30 21:22:33 24 4
gpt4 key购买 nike

我的数据库里有一张表

我想在里面插入一些数据

但我一直收到 pdo 错误代码 23000

我手动尝试了查询并且它有效,所以问题不在于查询

我的代码:

<?
include ('config.php');
$text=$_POST['text'];
if (!isset ($text)) exit();
$query=$db->prepare("INSERT INTO posts (post,userid,votes) VALUES (?,?,0)");
$query->bindValue(1,$text,PDO::PARAM_STR);
$query->bindValue(2,$id,PDO::PARAM_INT);
$re=$query->execute();
if ($re)
echo 'Added';
else die($query->errorcode()." ".$query->errorinfo());
?>

和配置看起来像

<?
session_start();
try{
$db=new PDO ('mysql:host=localhost;dbname=test;charset=utf8','root','');
}
catch (PDOException $error) {
echo $error->getmessage();
}
$id=$_SESSION['id'];
$username=$_SESSION['username'];
$password=$_SESSION['password'];
?>

最佳答案

你检查过 MySQL 文档了吗?

http://dev.mysql.com/doc/refman/5.0/en/error-messages-server.html#error_er_dup_key

看起来您在数据库中有一个重复的键。我猜的用户 ID。

如果您对 userid 有自动增量,则无需在创建时传递它。

看看你的代码:

  1. 从 session 中获取用户
  2. 将此用户添加到数据库

因此,如果您多次运行脚本,它将给出 23000 错误。

是的,userid 是如何进入 session 的?

关于php - 插入数据错误代码 23000 mysql pdo php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25815706/

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