index.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 49 行

PHP
49
字号
<?
include_once("inc/auth.php");
?>

<html>
<head>
<title>网络会议</title>
</head>

<?
 $connection=OpenConnection();
 $query = "SELECT * from USER where USER_ID='$LOGIN_USER_ID'";
 $cursor= exequery($connection,$query);
 if($ROW=mysql_fetch_array($cursor))
    $USER_NAME=$ROW["USER_NAME"];

 
 $STOP_FILE="msg/".$MEET_ID.".stp";
 $MSG_FILE="msg/".$MEET_ID.".msg";
 if(!file_exists($STOP_FILE))
 {
   if($fp = fopen($MSG_FILE,  "a+"))
   {
      fputs($fp,"\n[系统消息] - ".$USER_NAME."进入会议室  ");
      fclose($fp);
   }
 }
?>

<frameset rows="*" cols="*,120" FRAMEBORDER="no" FRAMESPACING="1">
  <frameset rows="30,0,*,60" cols="*" FRAMEBORDER="yes">
    <frame src="title.php?MEET_ID=<?=$MEET_ID?>&SUBJECT=<?=$SUBJECT?>" name="chat_title" scrolling="no" FRAMEBORDER="no">
    <frame src="view.php?MEET_ID=<?=$MEET_ID?>&FIRST_VIEW=1" name="chat_view" scrolling="yes">
    <frame src="view_area.php" name="chat_view_area" scrolling="auto">
    <frame name="chat_input" src="input.php?MEET_ID=<?=$MEET_ID?>&USER_NAME=<?=$USER_NAME?>" scrolling="no" FRAMEBORDER="no">
  </frameset>

  <frameset rows="*,60" cols="*">
    <frame src="user.php?MEET_ID=<?=$MEET_ID?>&USER_NAME=<?=$USER_NAME?>" name="chat_user" scrolling="auto" FRAMEBORDER="no">
    <frame src="control.php?MEET_ID=<?=$MEET_ID?>" name="chat_control" FRAMEBORDER="no">
  </frameset>

</frameset>

<noframes>
<body bgcolor="#cccccc">
</body></noframes>
</html>

⌨️ 快捷键说明

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