control.php
来自「通达网络办公 - Office Anywhere 2008 增强版100%源码(」· PHP 代码 · 共 15 行
PHP
15 行
<?php
include_once( "inc/auth.php" );
echo "\r\n<html>\r\n<head>\r\n<title>网络会议控制</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n\r\n<script>\r\nfunction stop_meet()\r\n{\r\n msg='确认要结束会议么?\\n结束后可以在综合管理中的网络会议管理中继续该会议';\r\n if(window.confirm(msg))\r\n {\r\n URL=\"stop.php?MEET_ID=";
echo $MEET_ID;
echo "\";\r\n window.location=URL;\r\n }\r\n}\r\n</script>\r\n</head>\r\n\r\n<body class=\"bodycolor\" topmargin=\"8\">\r\n<center>\r\n <input type=\"button\" value=\"离开会场\" class=\"SmallButton\" onclick=\"parent.location='../'\">\r\n <br>\r\n\r\n";
$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 "\r\n <input type=\"button\" value=\"结束会议\" class=\"SmallButton\" onclick=\"stop_meet();\">\r\n";
}
echo "</center>\r\n</body>\r\n</html>\r\n";
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?