테이블 변수명에서 yc4_를 shop_로 변경

This commit is contained in:
chicpro
2013-04-09 15:34:05 +09:00
parent 512c8feaf8
commit 4d95a696cd
149 changed files with 722 additions and 740 deletions

View File

@ -20,7 +20,7 @@ else
$delivery = (int)$tmp[0];
}
$sql =" select * from {$g4['yc4_item_table']} where it_use = '1' order by ca_id";
$sql =" select * 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++)
@ -35,24 +35,24 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
$ca_name4 = "";
$ca_id1 = substr($row['ca_id'],0,2);
$row2 = sql_fetch(" select ca_name from {$g4['yc4_category_table']} where ca_id = '$ca_id1' ");
$row2 = sql_fetch(" select ca_name from {$g4['shop_category_table']} where ca_id = '$ca_id1' ");
$ca_name1 = $row2['ca_name'];
if (strlen($row['ca_id']) >= 4) {
$ca_id2 = substr($row['ca_id'],0,4);
$row2 = sql_fetch(" select ca_name from {$g4['yc4_category_table']} where ca_id = '$ca_id2' ");
$row2 = sql_fetch(" select ca_name from {$g4['shop_category_table']} where ca_id = '$ca_id2' ");
$ca_name2 = $row2['ca_name'];
}
if (strlen($row['ca_id']) >= 6) {
$ca_id3 = substr($row['ca_id'],0,6);
$row2 = sql_fetch(" select ca_name from {$g4['yc4_category_table']} where ca_id = '$ca_id3' ");
$row2 = sql_fetch(" select ca_name from {$g4['shop_category_table']} where ca_id = '$ca_id3' ");
$ca_name3 = $row2['ca_name'];
}
if (strlen($row['ca_id']) >= 8) {
$ca_id4 = substr($row['ca_id'],0,8);
$row2 = sql_fetch(" select ca_name from {$g4['yc4_category_table']} where ca_id = '$ca_id4' ");
$row2 = sql_fetch(" select ca_name from {$g4['shop_category_table']} where ca_id = '$ca_id4' ");
$ca_name4 = $row2['ca_name'];
}