gpt4 book ai didi

php - 将特定的 'ID' 插入到我的表中。

转载 作者:行者123 更新时间:2023-11-29 20:52:19 26 4
gpt4 key购买 nike

我需要使用学校数据库编写一个 PHP 脚本。由于我的 MySQL 技能目前正在消失,我想问以下问题:以下问题:我需要将特定“ID”处的“上传”插入到我的表中。它应该是这样的:插入 PHP_Project(),其中 ID = ;

$pdo = new PDO($this->dsn, $this->username, $this->password, $this->pdoAttributes);
$statement = $pdo->prepare('insert into PHP_Project(upload) where ID = ? values (?,?)');

$statement->bindParam(1, $filename);
$statement->bindParam(2, $projectID);

$statement->execute();

我希望有人能帮助我。提前致谢!!

最佳答案

您编写的 MYSQL 查询不正确。您需要 MYSQL UPDATE 查询来更新特定列的值。

 $statement = $pdo->prepare('UPDATE PHP_Project SET upload = ? WHERE ID = ?');

查看本教程 Mysql update tutorial

关于php - 将特定的 'ID' 插入到我的表中。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37933270/

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