관리자모드 일부 원본 복구

This commit is contained in:
whitedot
2012-11-02 11:53:34 +09:00
parent d3ab4acee1
commit 50732cfc3b
54 changed files with 2758 additions and 2802 deletions

View File

@ -1,39 +1,39 @@
<?
$sub_menu = '200300';
include_once('./_common.php');
$sub_menu = "200300";
include_once("./_common.php");
if ($w == "u" || $w == "d")
if ($w == 'u' || $w == 'd')
check_demo();
auth_check($auth[$sub_menu], 'w');
auth_check($auth[$sub_menu], "w");
check_token();
if ($w == '')
if ($w == "")
{
$sql = ' insert $g4[mail_table]
set ma_id = "$_POST[ma_id]",
ma_subject = "$_POST[ma_subject]",
ma_content = "$_POST[ma_content]",
ma_time = "$g4[time_ymdhis]",
ma_ip = "$_SERVER[REMOTE_ADDR]" ';
$sql = " insert $g4[mail_table]
set ma_id = '$_POST[ma_id]',
ma_subject = '$_POST[ma_subject]',
ma_content = '$_POST[ma_content]',
ma_time = '$g4[time_ymdhis]',
ma_ip = '$_SERVER[REMOTE_ADDR]' ";
sql_query($sql);
}
else if ($w == 'u')
else if ($w == "u")
{
$sql = ' update $g4[mail_table]
set ma_subject = "$_POST[ma_subject]",
ma_content = "$_POST[ma_content]",
ma_time = "$g4[time_ymdhis]",
ma_ip = "$_SERVER[REMOTE_ADDR]"
where ma_id = "$_POST[ma_id]" ';
$sql = " update $g4[mail_table]
set ma_subject = '$_POST[ma_subject]',
ma_content = '$_POST[ma_content]',
ma_time = '$g4[time_ymdhis]',
ma_ip = '$_SERVER[REMOTE_ADDR]'
where ma_id = '$_POST[ma_id]' ";
sql_query($sql);
}
else if ($w == 'd')
else if ($w == "d")
{
$sql = ' delete from $g4[mail_table] where ma_id = "$_POST[ma_id]" ';
$sql = " delete from $g4[mail_table] where ma_id = '$_POST[ma_id]' ";
sql_query($sql);
}
goto_url('./mail_list.php');
goto_url("./mail_list.php");
?>