add_opinion.php

来自「通达OA2007SE源代码 非常好的」· PHP 代码 · 共 61 行

PHP
61
字号
<?
  include_once 'inc/auth.php';
  include_once 'inc/utility_all.php';
  echo '
<html>
<head>
<title>添加批注</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body class="bodycolor" topmargin="5">
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/edit.gif" WIDTH="22" HEIGHT="20" align="absmiddle">';
  echo '<s';
  echo 'pan class="big3"> 添加批注</span>
    </td>
  </tr>
</table>
<br>
<table border="0" cellspacing="1" width="90%" class="small" bgcolor="#000000" cellpadding="3" align="center" >
  <form action="add.php"  method="post" name="form1">  
   <tr>
    <td nowrap class="TableContent" width="90">当前时间:</td>
';
  $CUR_TIME = date ('Y-m-d H:i:s', time ());
  echo '    <td class="TableData">
      <input type="text" name="WRITE_TIME" size="19" readonly maxlength="100" class="BigStatic" value="';
  echo $CUR_TIME;
  echo '">       
    </td>
   </tr>
   <tr>
     <td nowrap class="TableContent"> 批注内容:</td>
     <td class="TableData" colspan="1">
       <textarea name="PROGRESS" class="BigInput" cols="50" rows="10"></textarea>
     </td>
   </tr>
    <tr>
      <td nowrap class="TableContent"> 提醒:</td>
      <td class="TableData">
';
  echo sms_remind (12);
  echo '      </td>
    </tr>       
   <tr>
    <td nowrap  class="TableControl" colspan="2" align="center">
      <input type="hidden" value="';
  echo $PLAN_ID;
  echo '" name="PLAN_ID">
      <input type="hidden" value="';
  echo $CUR_TIME;
  echo '" name="CUR_TIME">
      <input type="submit" value="确定" class="BigButton">&nbsp;&nbsp;
      <input type="button" class="BigButton" value="关闭" onClick="window.close();" title="关闭窗口">
    </td>
  </form>
</table>
</body>
</html>';
?>

⌨️ 快捷键说明

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