가격비교 사이트 페이지 경로 수정

This commit is contained in:
chicpro
2013-04-10 11:08:09 +09:00
parent 25d9290ae8
commit e765d714fb
21 changed files with 117 additions and 107 deletions

View File

@ -2,7 +2,7 @@
/*
** 가격비교사이트 오미 엔진페이지
*/
include_once("./_common.php");
include_once('./_common.php');
?>
<html>
<title>오미 엔진페이지</title>
@ -30,9 +30,9 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
$row4 = sql_fetch(" select ca_name from {$g4['shop_category_table']} where ca_id = '".substr($row['ca_id'],0,6)."' ");
// 재고검사해서 없으면 상품가격을 0 으로 설정
$stock = get_it_stock_qty($row[it_id]);
$stock = get_it_stock_qty($row['it_id']);
if ($stock <= 0)
$row[it_amount] = 0;
$row['it_amount'] = 0;
$str .= "<p>{$row['it_id']}^{$row2['ca_name']}^{$row3['ca_name']}^{$row4['ca_name']}^{$row['it_maker']}^{$row['it_name']}^".G4_SHOP_URL."/item.php?it_id={$row['it_id']}^{$row['it_amount']}";
$str .= "\n";