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

📄 user_actives.tpl.php

📁 a short sketch about linux syntex lines.
💻 PHP
字号:
<html>
<head>
<title>vodcms.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="../../images/admin/public.css" rel="stylesheet" type="text/css" />
<link href="../../images/admin/style.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $this->basedir;?>js/jquery.js" language="javascript"></script>
<script language="javascript">
$(document).ready(function() {
	setime(10);
}
)
function setime(time){
	document.getElementById('newtime').innerHTML = time;
	if (time==1){
		window.location.reload();
	}
	setTimeout("setime("+(time-1)+")", 1000);
}
</script>
<body>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
  <tr align="center" valign="top">
    <td width="*" align="center" valign="top">
	<!-- ######### begin ######### -->
      <div class="Block">
      <div class="BlockBar">当前正在点播用户列表:<span id="newtime">10</span>秒后自动刷新本页</div>
	  <form name="form2" method="post" action="">
        <table border="0" cellpadding="0" cellspacing="0" class="tab">
          <tr class="row">
            <td width="73">关键词:</td>
            <td>
              <input name="keyword" type="text" value="<?php echo urldecode($_REQUEST['keyword']);?>" />
              <select name="type" id="type">
                <option value="0">全部</option>
                <option value="1">用户名</option>
                <option value="2">影片名</option>
              </select>
              <input type="submit" name="Submit" value="提交"></td>
            </tr>
        </table>
	  </form>
        <form id="form1" name="form1" method="post" action="<?php echo $this->installdir;?>?mod=user&action=search">
        <table border="0" align="center" cellpadding="4" cellspacing="1" class="tab">
          <tr class="sub">
            <td width="11%" class="align-center">编号</td>
            <td width="21%" class="align-center">用户</td>
            <td width="26%" class="align-center">在线时长</td>
            <td width="30%" class="align-center">观看影片</td>
            <td width="12%" class="align-center">管理</td>
          </tr>
		  <?php
		  if (count($this->active)>0){
		  foreach($this->active as $row){?>
          <tr class="row">
            <td class="align-center"><?php echo $row['id'];?></td>
            <td class="align-center"><?php echo $row['username'];?></td>
            <td class="align-center"><?php echo round(($row['lastime']- $row['firstime'])/60, 1);?>分钟</td>
            <td class="align-center"><?php echo $row['movie'];?></td>
            <td class="align-center"><a href="<?php echo $this->installdir;?>?mod=user&action=actives&do=del&id=<?php echo $row['id'];?>">删除</a></td>
          </tr>
		  <?php
		  }}else{
		  	echo '<tr class="row align-center" ><td colspan="5">没有找到任何记录!<a href="javascript:history.back()">您可以点击这里返回上一页</a></td></tr>';
		  }?>
        </table>
        </form>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
	  <tr><td width="82%">
	  <?php echo $this->printpage;?>
	    </td>
	  </tr></table>
      </div>
      <div id="App-Version-Prompt" style="display:none;">
        <div class="space"></div>
        <div class="Block">
          <div class="BlockBar">版本更新信息</div>
          <div class="BlockContent" id="App-Version-Prompt-Body" style="padding:20px 5px 20px 5px; text-align:center; background:#FFFFCC;">loading...</div>
        </div>
      </div>
      <!-- ########## end ########## -->
    </td>
    <td width="5"></td>
    <td width="150" align="center" valign="top">
    <?php
	echo $this->render('menu');
	?>
     </td>
  </tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>

⌨️ 快捷键说明

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