我使用了正确的命令来更新我的数据库表
$result_col ="UPDATE `try`.`5` SET `D` = '$value' WHERE `5`.`A` = '$filenames[$index]' ;";
如果我在 phpmyadmin 中写入以使用上述命令更新数据库表,它会起作用。
但它在我的代码中不起作用,尽管当我回显命令时它会打印正确的值
UPDATE Store SET D='SUN: 2.495' WHERE `Index` = 'Hi35'
UPDATE Store SET D='SUN: 1.416' WHERE `Index` = 'He_41'
而且它没有显示任何错误或警告,我也使用了这个error_reporting(E_ALL)
可能的原因是什么?
I checked Database link, It works
I checked the code, NO error reports or warnings
I pasted the command in phpamyadmin, the command works
I used mysqli instead of mysql, still the same problem
我做了很多试验,但为什么该命令在代码中不起作用?
任何的想法??