amount 필드명 price 로 변경

This commit is contained in:
chicpro
2013-09-11 15:52:33 +09:00
parent a61215ad14
commit 97cf079a0f
60 changed files with 837 additions and 805 deletions

View File

@ -6,7 +6,7 @@ $code = $_POST['zipcode'];
if(!$code)
die('0');
$sql = " select sc_id, sc_amount
$sql = " select sc_id, sc_price
from {$g4['shop_sendcost_table']}
where sc_zip1 <= $code
and sc_zip2 >= $code ";
@ -15,5 +15,5 @@ $row = sql_fetch($sql);
if(!$row['sc_id'])
die('0');
die($row['sc_amount']);
die($row['sc_price']);
?>