control.php
来自「通达OA2007SE源代码 非常好的」· PHP 代码 · 共 42 行
PHP
42 行
<?
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 + =
减小字号Ctrl + -
显示快捷键?