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

📄 control.php

📁 通达OA2007SE源代码 非常好的
💻 PHP
字号:
<?
  include_once 'inc/auth.php';
  echo '
<html>
<head>
<title>网络会议控制</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
';
  echo '<s';
  echo 'cript>
function stop_meet()
{
 msg=\'确认要结束会议么?\\n结束后可以在综合管理中的网络会议管理中继续该会议\';
 if(window.confirm(msg))
 {
  URL="stop.php?MEET_ID=';
  echo $MEET_ID;
  echo '";
  window.location=URL;
 }
}
</script>
</head>
<body class="bodycolor" topmargin="8">
<center>
  <input type="button" value="离开会场" class="SmallButton" onclick="parent.location=\'../\'">
  <br>
';
  $query = ((((''.'SELECT * from NETMEETING where FROM_ID=\'').$LOGIN_USER_ID).'\' and MEET_ID=').$MEET_ID);
  $cursor = exequery ($connection, $query);
  if ($ROW = mysql_fetch_array ($cursor))
  {
    echo '
  <input type="button" value="结束会议" class="SmallButton" onclick="stop_meet();">
';
  }
  echo '</center>
</body>
</html>
';
?>

⌨️ 快捷键说明

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