edit_opinion.php

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

PHP
61
字号
<?
  include_once 'inc/auth.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="450" class="small" bgcolor="#000000" cellpadding="3" align="center" >
  <form action="update_opinion.php"  method="post" name="form1">  
   <tr>
    <td nowrap class="TableContent" width="90">当前时间:</td>
';
  $CUR_TIME = date ('Y-m-d H:i:s', time ());
  $query = (((''.'SELECT * from WORK_DETAIL where DETAIL_ID=\'').$DETAIL_ID).'\'');
  $cursor = exequery ($connection, $query);
  if ($ROW = mysql_fetch_array ($cursor))
  {
    $PROGRESS = $ROW['PROGRESS'];
  }
  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="45" rows="16">';
  echo $PROGRESS;
  echo '</textarea>
     </td>
   </tr> 
   <tr>
    <td nowrap  class="TableControl" colspan="2" align="center">
      <input type="hidden" value="';
  echo $DETAIL_ID;
  echo '" name="DETAIL_ID">
      <input type="hidden" value="';
  echo $PLAN_ID;
  echo '" name="PLAN_ID">
      <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 + -
显示快捷键?