⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 极限网络智能办公系统 - Office Automation 2008 官方100% 源码
💻 PHP
字号:
<?php
 

include_once( "inc/auth.php" );
echo "\r\n<html>\r\n<head>\r\n<title>编辑参数设置</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n<script Language=\"JavaScript\">\r\nfunction CheckForm()\r\n{\r\n  form1.submit();\r\n}\r\n</script>\r\n</head>\r\n\r\n<body class=\"bodycolor\" topmargin=\"5\">\r\n\r\n";
$query = "SELECT * from USER where USER_ID='".$LOGIN_USER_ID."'";
$cursor = exequery( $connection, $query );
if ( $ROW = mysql_fetch_array( $cursor ) )
{
	$EMAIL_REPLY_CONTENT = $ROW['EMAIL_REPLY_CONTENT'];
	$EMAIL_REPLY_SUBJECT = $ROW['EMAIL_REPLY_SUBJECT'];
	$EMAIL_REPLY_NOTE = $ROW['EMAIL_REPLY_NOTE'];
}
echo "\r\n<table border=\"0\" width=\"90%\" cellspacing=\"0\" cellpadding=\"3\" class=\"small\">\r\n  <tr>\r\n    <td class=\"Big\"><img src=\"/images/menu/email.gif\" WIDTH=\"22\" HEIGHT=\"20\" align=\"absmiddle\"><span class=\"big3\"> 参数设置</span><br>\r\n    </td>\r\n  </tr>\r\n</table>\r\n <table border=\"0\"  width=\"550\" cellpadding=\"2\" cellspacing=\"1\" align=\"center\" bgcolor=\"#000000\" class=\"small\">\r\n  <form enctype=\"multipart/form-data\" action=\"update.php\"  method=\"post\" name=\"form1\">\r\n    <tr>\r\n      <td nowrap class=\"TableData\"  width=\"150\"> 回复时,加入原邮件:</td>\r\n      <td class=\"TableData\">\r\n        <select name=\"EMAIL_REPLY_CONTENT\" class=\"BigSelect\">\r\n          <option value=\"1\" ";
if ( $EMAIL_REPLY_CONTENT == 1 )
{
	echo "selected";
}
echo ">加入</option>\r\n          <option value=\"0\" ";
if ( $EMAIL_REPLY_CONTENT == 0 )
{
	echo "selected";
}
echo ">不加入</option>\r\n        </select>\r\n      </td>\r\n    </tr>\r\n    <tr>\r\n      <td valign=\"top\" nowrap class=\"TableData\">回复时,主题显示:</td>\r\n      <td class=\"TableData\">\r\n        <select name=\"EMAIL_REPLY_SUBJECT\" class=\"BigSelect\">\r\n          <option value=\"0\" ";
if ( $EMAIL_REPLY_SUBJECT == 0 )
{
	echo "selected";
}
echo ">Re</option>\r\n          <option value=\"1\" ";
if ( $EMAIL_REPLY_SUBJECT == 1 )
{
	echo "selected";
}
echo ">Reply</option>\r\n          <option value=\"2\" ";
if ( $EMAIL_REPLY_SUBJECT == 2 )
{
	echo "selected";
}
echo ">回复</option>\r\n          <option value=\"3\" ";
if ( $EMAIL_REPLY_SUBJECT == 3 )
{
	echo "selected";
}
echo ">答复</option>\r\n        </select>\r\n      </td>\r\n    </tr>\r\n    <tr>\r\n      <td valign=\"top\" nowrap class=\"TableData\">已读回执:</td>\r\n      <td class=\"TableData\">\r\n        <select name=\"EMAIL_REPLY_NOTE\" class=\"BigSelect\">\r\n          <option value=\"0\" ";
if ( $EMAIL_REPLY_NOTE == 0 )
{
	echo "selected";
}
echo ">提醒我</option>\r\n          <option value=\"1\" ";
if ( $EMAIL_REPLY_NOTE == 1 )
{
	echo "selected";
}
echo ">不发回执 (包括收到对方要求回执的邮件,也不发送回执)</option>\r\n          <option value=\"2\" ";
if ( $EMAIL_REPLY_NOTE == 2 )
{
	echo "selected";
}
echo ">发回执 (包括收到对方要求回执的邮件,直接发送回执)</option>\r\n        </select>\r\n      </td>\r\n    </tr>\r\n    <tr align=\"center\" class=\"TableControl\">\r\n      <td colspan=\"2\" nowrap>\r\n         <input type=\"button\" value=\"保存修改\" class=\"BigButton\" onclick=\"CheckForm();\">&nbsp;&nbsp;\r\n      </td>\r\n    </tr>\r\n  </table>\r\n</form>\r\n\r\n<br>\r\n\r\n</body>\r\n</html>";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -