Files
firstgarden-web-gnu/adm/sms_admin/form_group_move.php
2014-06-09 14:48:44 +09:00

30 lines
1.1 KiB
PHP

<?php
// 이모티콘 그룹 이동
$sub_menu = "900500";
include_once("./_common.php");
auth_check($auth[$sub_menu], "w");
if ($fg_no)
{
$res = sql_fetch("select * from {$g5['sms5_form_group_table']} where fg_no = '$fg_no'");
if ($res)
$fg_count = $res['fg_count'];
else
$fg_count = 0;
sql_query("update {$g5['sms5_form_group_table']} set fg_count = fg_count + $fg_count where fg_no = '$move_no'");
sql_query("update {$g5['sms5_form_group_table']} set fg_count = 0 where fg_no='$fg_no'");
}
else
{
$fg_count = sql_fetch("select count(*) as cnt from {$g5['sms5_form_table']} where fg_no = 0");
$fg_count = $fg_count['cnt'];
sql_query("update {$g5['sms5_form_group_table']} set fg_count = fg_count + $fg_count where fg_no = '$move_no'");
}
$group = sql_fetch("select * from {$g5['sms5_form_group_table']} where fg_no = '$move_no'");
sql_query("update {$g5['sms5_form_table']} set fg_no = '$move_no', fg_member = '{$group['fg_member']}' where fg_no = '$fg_no'");
goto_url('./form_group.php');
?>