#186 가격 필드명 price 로 변경
This commit is contained in:
@ -19,7 +19,7 @@ Field Status Notes
|
||||
$lt = "<<<";
|
||||
$gt = ">>>";
|
||||
|
||||
$sql =" select it_id, it_name, it_amount, it_time from {$g4['shop_item_table']} where it_use = '1' order by ca_id";
|
||||
$sql =" select it_id, it_name, it_price, it_time from {$g4['shop_item_table']} where it_use = '1' order by ca_id";
|
||||
$result = sql_query($sql);
|
||||
|
||||
for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
@ -37,7 +37,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
{
|
||||
// 업데이트 상품 양식 & 품절 복구 상품 양식
|
||||
echo "{$lt}pname{$gt}{$row['it_name']}\n";
|
||||
echo "{$lt}price{$gt}{$row['it_amount']}\n";
|
||||
echo "{$lt}price{$gt}{$row['it_price']}\n";
|
||||
echo "{$lt}class{$gt}U\n";
|
||||
}
|
||||
echo "{$lt}utime{$gt}{$row['it_time']}\n";
|
||||
|
||||
Reference in New Issue
Block a user