#186 가격 필드명 price 로 변경

This commit is contained in:
chicpro
2013-05-16 09:14:05 +09:00
parent ab15f92def
commit 5759a65cfd
40 changed files with 89 additions and 95 deletions

View File

@ -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";