[php5_debug] InsertArray문의 컬럼명 따옴표 누락 일괄 수정반영

This commit is contained in:
2018-01-17 13:19:56 +09:00
parent 8c0d913e89
commit a9fa1b9d37
2 changed files with 12 additions and 12 deletions
+8 -8
View File
@@ -40,14 +40,14 @@ if($member['GRADE'] < 6) {
$total = $donator['TOT'] + $amount;
$DB->InsertArray('DONATION', array(
ID => $id,
NAME => $name,
RNAME => $rname,
SUBNAME => $subname,
DATE => $date,
AMOUNT => $amount,
CUMUL => $cumul,
TOTAL => $total
'ID' => $id,
'NAME' => $name,
'RNAME' => $rname,
'SUBNAME' => $subname,
'DATE' => $date,
'AMOUNT' => $amount,
'CUMUL' => $cumul,
'TOTAL' => $total
));
$response['result'] = 'SUCCESS';