재입고SMS 알림 기능 추가

This commit is contained in:
chicpro
2014-02-26 11:06:10 +09:00
parent 4a9c29d3be
commit e2ea67feba
13 changed files with 452 additions and 4 deletions

View File

@ -11,7 +11,9 @@ for ($i=0; $i<count($_POST['it_id']); $i++)
{
$sql = "update {$g5['g5_shop_item_table']}
set it_stock_qty = '{$_POST['it_stock_qty'][$i]}',
it_use = '{$_POST['it_use'][$i]}'
it_use = '{$_POST['it_use'][$i]}',
it_soldout = '{$_POST['it_soldout'][$i]}',
it_stock_sms = '{$_POST['it_stock_sms'][$i]}'
where it_id = '{$_POST['it_id'][$i]}' ";
sql_query($sql);
}