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

📄 channel.php

📁 mysee网络直播源代码Mysee Lite是Mysee独立研发的网络视频流媒体播放系统。在应有了P2P技术和一系列先进流媒体技术之后
💻 PHP
字号:
<?php 
include_once 'functions.php'; 
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>频道管理</title>
<style type="text/css">
<!--
.style1 {
	font-size: 18px;
	font-weight: bold;
}
-->
</style>
</head>

<body>
<p align="center" class="style1">频道列表 <a href="program.php">节目列表</a></p>
<p align="center" >
<form name="form1" method="post" action="channeladd.php">
  <div align="center">请输入节目数:
    <input name="programnum" type="text" id="programnum" value="5" size="5">
    <input type="submit" name="Submit" value="增加新频道">
  </div>
</form>
</p>
<table width="80%" border="1" align="center">
  <tr>
    <td nowrap><strong>编号</strong></td>
    <td nowrap><strong>频道信息</strong></td>
    <td nowrap><strong>码率</strong></td>
    <td nowrap><strong>节目列表</strong></td>
    <td nowrap><strong>操作</strong></td>
  </tr>
  <?php 
  $listTable = getChannelTable();
  $gramTable = getProgramTable();
  
  $i=0;
  foreach ($listTable as $listmd5 => $listarray){
  	$i++;
  ?>
  <tr>
    <td><?php print($i); ?>&nbsp;</td>
    <td><?php print("<b>".$listarray[1]."</b>[".$listmd5."]"); ?>&nbsp;</td>
    <td><?php print($listarray[0]); ?>&nbsp;</td>
    <td>
    <?php
	$size = count($listarray);
    for ($j=2; $j<$size; $j++){
		print("<b>".$gramTable[trim($listarray[$j])]."</b>[".trim($listarray[$j])."]<br/>");
	}
    ?>
    &nbsp;</td>
    <td><a href="channeldel.php?channel=<?php print($listmd5); ?>" onClick="return confirm('确定你想要删除这个频道么?删除之后不能恢复!');">删除</a></td>
  </tr>
  <?php 
  }
  ?>
</table>
<form name="form1" method="post" action="channeladd.php">
  <div align="center">请输入节目数:
    <input name="programnum" type="text" id="programnum" value="5" size="5">
    <input type="submit" name="Submit" value="增加新频道">
  </div>
</form>
</body>
</html>

⌨️ 快捷键说明

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