13 lines
827 B
PHP
13 lines
827 B
PHP
<?php
|
|
$table[$module.'data'] = $DB['head'].'_'.$module.'_data'; //데이터
|
|
$table[$module.'member'] = $DB['head'].'_'.$module.'_member'; //멤버
|
|
$table[$module.'index'] = $DB['head'].'_'.$module.'_index'; //데이타 인덱스
|
|
$table[$module.'category'] = $DB['head'].'_'.$module.'_category'; //카테고리
|
|
$table[$module.'category_index'] = $DB['head'].'_'.$module.'_category_index'; //카테고리 인덱스
|
|
$table[$module.'list'] = $DB['head'].'_'.$module.'_list'; //리스트
|
|
$table[$module.'list_member'] = $DB['head'].'_'.$module.'_list_member'; //리스트 멤버
|
|
$table[$module.'list_index'] = $DB['head'].'_'.$module.'_list_index'; //리스트 인덱스
|
|
$table[$module.'month']= $DB['head'].'_'.$module.'_month'; //월별수량
|
|
$table[$module.'day'] = $DB['head'].'_'.$module.'_day'; //일별수량
|
|
?>
|