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

📄 index.php

📁 通达OA2007SE源代码 非常好的
💻 PHP
字号:
<?
  include_once 'inc/auth.php';
  echo '
<html>
<head>
<title>状态栏设置</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
';
  $query = 'SELECT STATUS_TEXT from INTERFACE';
  $cursor = exequery ($connection, $query);
  if ($ROW = mysql_fetch_array ($cursor))
  {
    $STATUS_TEXT = $ROW['STATUS_TEXT'];
  }
  echo '
';
  $query = 'SELECT PARA_VALUE from SYS_PARA where PARA_NAME =\'STATUS_TEXT_MARQUEE\'';
  $cursor = exequery ($connection, $query);
  if ($ROW = mysql_fetch_array ($cursor))
  {
    $PARA_VALUE = $ROW['PARA_VALUE'];
  }
  echo '
<body class="bodycolor" topmargin="5">
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/sys_config.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><b>';
  echo '<s';
  echo 'pan class="big1">底部状态栏设置</big></b>
    </td>
  </tr>
</table>
<table border="0" cellspacing="1" width="90%" class="small" bgcolor="#000000" cellpadding="3" align="center" >
  <form  action="update.php"  method="post" name="form1">
   <tr class="TableHeader">
    <td nowrap>
        <img src="/images/green_arrow.gif" align="absMiddle"> 状态栏设置
    </td>
   </tr>
   <tr class="TableData">
';
  echo '
    <td nowrap>
        <textarea name="STATUS_TEXT" class="BigInput" cols="90" rows="20">';
  echo $STATUS_TEXT;
  echo '</textarea><br>提示:多行文字可以实现轮换显示
    </td>
   </tr>
   <tr class="TableData">
    <td nowrap>
   滚动时间设置为:<input type="text" name="PARA_VALUE" class="SmallInput" size="10" maxlength="10" value="';
  echo $PARA_VALUE;
  echo '">秒
    </td>
   </tr>
   <tr class="TableControl">
    <td nowrap  colspan="2" align="center">
        <input type="submit" value="确定" class="BigButton">
    </td>
   </tr>
  </form>
</table>
</body>
</html>
';
?>

⌨️ 快捷键说明

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