#186 가격 필드명 price 로 변경

This commit is contained in:
chicpro
2013-05-15 18:50:24 +09:00
parent e887152412
commit 23259ab372
34 changed files with 148 additions and 205 deletions

View File

@ -2,7 +2,7 @@
$sub_menu = '400300';
include_once('./_common.php');
$sql = " select ca_id, it_id, it_name, it_amount
$sql = " select ca_id, it_id, it_name, it_price
from {$g4['shop_item_table']}
where ca_id like '$ca_id%'
and it_id <> '$it_id'
@ -26,7 +26,7 @@ for($i=0;$row=sql_fetch_array($result);$i++) {
else
$it_image = "";
$options .= "<option value=\"".$row['it_id']."/".$it_image."/".$row['it_amount']."\">$ca_name : $it_name</option>\n";
$options .= "<option value=\"".$row['it_id']."/".$it_image."/".$row['it_price']."\">$ca_name : $it_name</option>\n";
}
echo $options;