レポートカウンターを更新するためのこの小さなスクリプトがあります
/*********************************
* Report an ad as inappropriate
* This happens when a user click
* the "Report ad" link on the ad
* view page.
*
* The ad can then be reviewed
* and disabled.
*
* @param int | The ad id
*********************************/
function report_ad($aid) {
$row = $this->db->dbh->query('UPDATE '. $this->config->db_prefix .'_adverts SET been_reported = 1, num_reports = num_reports + 1 WHERE aid = '.$aid.'');
$row->execute();
}
リンクのクリックを処理するためのこのjQuery
$("#report-ad").click(function(){
var conf = confirm("Do you want to report this ad as inappropriate?");
var aid = {$smarty.get.aid}
if(conf == true) {
$.ajax({
url: 'reportad.php',
type: 'post',
data: {literal}{aid: aid}{/literal},
success: function(data) {
alert("The ad has been reported as inappropriate");
},
error: function(data) {
alert("An error occured");
}
});
}
return false;
});
reportad.php には次の内容が含まれています。
$adverts = new Adverts();
$adverts->report_ad($_POST["aid"]);
何らかの理由で num_reports が 2 に更新されるため、1 の場合は 3 になり、次に 5 になります。どこに問題があるのかわかりません。