경로 및 전체테이블명 변경

This commit is contained in:
gnuboard
2013-02-07 16:56:29 +09:00
parent d7b9aab47a
commit f7855b165c
184 changed files with 711 additions and 708 deletions

View File

@ -28,8 +28,8 @@ if (!$sst) {
$sod = "desc";
}
$sql_common = " from $g4[yc4_item_ps_table] a
left join $g4[yc4_item_table] b on (a.it_id = b.it_id)
$sql_common = " from $g4[shop_item_ps_table] a
left join $g4[shop_item_table] b on (a.it_id = b.it_id)
left join $g4[member_table] c on (a.mb_id = c.mb_id) ";
$sql_common .= $sql_search;
@ -62,7 +62,7 @@ $qstr = "$qstr&sca=$sca&save_stx=$stx";
<select id="sca" name="sca">
<option value=''>전체분류
<?
$sql1 = " select ca_id, ca_name from $g4[yc4_category_table] order by ca_id ";
$sql1 = " select ca_id, ca_name from $g4[shop_category_table] order by ca_id ";
$result1 = sql_query($sql1);
for ($i=0; $row1=mysql_fetch_array($result1); $i++) {
$len = strlen($row1[ca_id]) / 2 - 1;