channel.php
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. <?php 
  2. include_once 'functions.php'; 
  3. ?>
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  8. <title>频道管理</title>
  9. <style type="text/css">
  10. <!--
  11. .style1 {
  12. font-size: 18px;
  13. font-weight: bold;
  14. }
  15. -->
  16. </style>
  17. </head>
  18. <body>
  19. <p align="center" class="style1">频道列表 <a href="program.php">节目列表</a></p>
  20. <p align="center" >
  21. <form name="form1" method="post" action="channeladd.php">
  22.   <div align="center">请输入节目数:
  23.     <input name="programnum" type="text" id="programnum" value="5" size="5">
  24.     <input type="submit" name="Submit" value="增加新频道">
  25.   </div>
  26. </form>
  27. </p>
  28. <table width="80%" border="1" align="center">
  29.   <tr>
  30.     <td nowrap><strong>编号</strong></td>
  31.     <td nowrap><strong>频道信息</strong></td>
  32.     <td nowrap><strong>码率</strong></td>
  33.     <td nowrap><strong>节目列表</strong></td>
  34.     <td nowrap><strong>操作</strong></td>
  35.   </tr>
  36.   <?php 
  37.   $listTable = getChannelTable();
  38.   $gramTable = getProgramTable();
  39.   
  40.   $i=0;
  41.   foreach ($listTable as $listmd5 => $listarray){
  42.    $i++;
  43.   ?>
  44.   <tr>
  45.     <td><?php print($i); ?>&nbsp;</td>
  46.     <td><?php print("<b>".$listarray[1]."</b>[".$listmd5."]"); ?>&nbsp;</td>
  47.     <td><?php print($listarray[0]); ?>&nbsp;</td>
  48.     <td>
  49.     <?php
  50. $size = count($listarray);
  51.     for ($j=2; $j<$size; $j++){
  52. print("<b>".$gramTable[trim($listarray[$j])]."</b>[".trim($listarray[$j])."]<br/>");
  53. }
  54.     ?>
  55.     &nbsp;</td>
  56.     <td><a href="channeldel.php?channel=<?php print($listmd5); ?>" onClick="return confirm('确定你想要删除这个频道么?删除之后不能恢复!');">删除</a></td>
  57.   </tr>
  58.   <?php 
  59.   }
  60.   ?>
  61. </table>
  62. <form name="form1" method="post" action="channeladd.php">
  63.   <div align="center">请输入节目数:
  64.     <input name="programnum" type="text" id="programnum" value="5" size="5">
  65.     <input type="submit" name="Submit" value="增加新频道">
  66.   </div>
  67. </form>
  68. </body>
  69. </html>