[php5_debug] InsertArray문의 컬럼명 따옴표 누락 일괄 수정반영
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user