50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
$sub_menu = '300700';
|
|
include_once('./_common.php');
|
|
|
|
if ($w == "u" || $w == "d")
|
|
check_demo();
|
|
|
|
if ($w == 'd')
|
|
auth_check_menu($auth, $sub_menu, "d");
|
|
else
|
|
auth_check_menu($auth, $sub_menu, "w");
|
|
|
|
check_admin_token();
|
|
|
|
$fm_id = isset($_POST['fm_id']) ? (int) $_POST['fm_id'] : 0;
|
|
$fa_subject = isset($_POST['fa_subject']) ? $_POST['fa_subject'] : '';
|
|
$fa_content = isset($_POST['fa_content']) ? $_POST['fa_content'] : '';
|
|
$fa_order = isset($_POST['fa_order']) ? (int) $_POST['fa_order'] : 0;
|
|
$fa_id = isset($_POST['fa_id']) ? (int) $_POST['fa_id'] : 0;
|
|
|
|
$sql_common = " fa_subject = '$fa_subject',
|
|
fa_content = '$fa_content',
|
|
fa_order = '$fa_order' ";
|
|
|
|
if ($w == "")
|
|
{
|
|
$sql = " insert {$g5['faq_table']}
|
|
set fm_id ='$fm_id',
|
|
$sql_common ";
|
|
sql_query($sql);
|
|
|
|
$fa_id = sql_insert_id();
|
|
}
|
|
else if ($w == "u")
|
|
{
|
|
$sql = " update {$g5['faq_table']}
|
|
set $sql_common
|
|
where fa_id = '$fa_id' ";
|
|
sql_query($sql);
|
|
}
|
|
else if ($w == "d")
|
|
{
|
|
$sql = " delete from {$g5['faq_table']} where fa_id = '$fa_id' ";
|
|
sql_query($sql);
|
|
}
|
|
|
|
if ($w == 'd')
|
|
goto_url("./faqlist.php?fm_id=$fm_id");
|
|
else
|
|
goto_url("./faqform.php?w=u&fm_id=$fm_id&fa_id=$fa_id"); |