gpt4 book ai didi

php - Mysql 查询从 php 更新

转载 作者:行者123 更新时间:2023-11-29 07:46:08 25 4
gpt4 key购买 nike

大家好,我在 PHP 中查询更新记录时遇到问题。

 <?php
include('../webcgo/script/cox.php');
$query = $cox->query("SELECT cf_id FROM offerte;");
while ($idx = mysqli_fetch_array($query)) {
$check = '<button class="uk-button" onclick="location.href=\'http://localhost/chartscript/remRegola.php?dis=2&id=' . $idx['cf_id'] . '\'">OK</button>';
$query_check = 'UPDATE offerte SET check=\'' . $check . '\' WHERE cf_id=' . $idx['cf_id'].';';
if ($queryx = $cox->query($query_check) === TRUE) {
echo "Record updated successfully";
} else {
echo "Error updating record: " . $cox->error;

}
}
mysqli_close($cox);?>

结果:更新记录时出错:您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在 'check=' 附近使用的正确语法

最佳答案

检查MySQL reserved keyword 。如果您要在查询中使用它,您必须将其用反引号括起来:

 $query_check = 'UPDATE agoragroup_chronoforms_data_inserimento_offerte_prod SET `check`=\'' . $check . '\' WHERE cf_id=' . $idx['cf_id'].';';

关于php - Mysql 查询从 php 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27746852/

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