📄 control.php
字号:
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>网络会议控制</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function stop_meet()
{
msg='确认要结束会议么?\n结束后可以在综合管理中的网络会议管理中继续该会议';
if(window.confirm(msg))
{
URL="stop.php?MEET_ID=<?=$MEET_ID?>";
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))
{
?>
<input type="button" value="结束会议" class="SmallButton" onclick="stop_meet();">
<?
}
?>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -