$sub_menu = '400710';
include_once('./_common.php');
auth_check($auth[$sub_menu], "r");
$g4['title'] = 'FAQ관리';
include_once (G4_ADMIN_PATH.'/admin.head.php');
$sql_common = " from {$g4['yc4_faq_master_table']} ";
// 테이블의 전체 레코드수만 얻음
$sql = " select count(*) as cnt " . $sql_common;
$row = sql_fetch($sql);
$total_count = $row['cnt'];
$rows = $config['cf_page_rows'];
$total_page = ceil($total_count / $rows); // 전체 페이지 계산
if ($page == "") { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page - 1) * $rows; // 시작 열을 구함
$sql = "select * $sql_common order by fm_id desc limit $from_record, {$config['cf_page_rows']} ";
$result = sql_query($sql);
?>
FAQ관리
=$pg_anchor?>
처음건수 : echo $total_count ?>
| ID |
제목 |
FAQ수 |
상세보기 |
 |
for ($i=0; $row=mysql_fetch_array($result); $i++)
{
$sql1 = " select COUNT(*) as cnt from {$g4['yc4_faq_table']} where fm_id = '{$row['fm_id']}' ";
$row1 = sql_fetch($sql1);
$cnt = $row1['cnt'];
$s_detail_vie = icon("보기", "./faqlist.php?fm_id={$row['fm_id']}");
$s_mod = icon("수정", "./faqmasterform.php?w=u&fm_id={$row['fm_id']}");
$s_del = icon("삭제", "javascript:del('./faqmasterformupdate.php?w=d&fm_id={$row['fm_id']}');");
$s_vie = icon("보기", G4_SHOP_URL."/faq.php?fm_id={$row['fm_id']}");
$list = $i%2;
echo "
| {$row['fm_id']} |
" . stripslashes($row['fm_subject']) . " |
$cnt |
$s_detail_vie |
$s_mod $s_del $s_vie |
";
}
if ($i == 0)
echo "| 자료가 한건도 없습니다. |
\n";
?>
=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page=");?>
FAQ 등록하기
=$pg_anchor?>
- : FAQ는 무제한으로 등록할 수 있습니다
- 1. 먼저
를 눌러 FAQ Master를 생성합니다. (하나의 FAQ 타이틀 생성 : 자주하시는 질문, 이용안내..등 )
- 2. 상세보기에 있는
을 눌러 세부 내용으로 들어갑니다.
include_once (G4_ADMIN_PATH.'/admin.tail.php');
?>