打印出UPDATE和DELETE查询

时间:2014-06-22 15:26:44

标签: php

在INSERT php / sql代码的底部,我使用echo打印出查询结果来修复错误,这样:

... code ...
$result = MYSQL_QUERY($sqlQuery);
echo $sqlQuery

是否存在打印UPDATE和DELETE查询的解决方案?

TKS All

1 个答案:

答案 0 :(得分:0)

根据对OP的评论,如果您希望这样做,则需要更改运行查询的方式。以下是我将如何做到这一点。

$update = "UPDATE mod_document_images SET image_os_res = '" . $checkbox_os . "', image_ne_aut = '" . $checkbox_ne . "', image_ge_cat = '" . $image_gen_cat . "' WHERE image_id = " . $image_id;

echo "Query: " . $query; // Echo the query containing the variables supplied
$result = mysql_query($update); // Run the update and store the result in $result