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

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="channel.php">频道列表</a></p>
  20. <p align="center" >
  21. </p>
  22. <table width="80%" border="1" align="center">
  23.   <tr>
  24.     <td nowrap><strong>编号</strong></td>
  25.     <td nowrap><strong>节目名</strong></td>
  26.     <td nowrap><strong>MD5</strong></td>
  27.     <td nowrap><strong>码率</strong></td>
  28.     <td nowrap><strong>操作</strong></td>
  29.   </tr>
  30.   <?php 
  31.   $listTable = getProgramInfoTable();
  32.   $gramTable = getProgramTable();
  33.   
  34.   $i=0;
  35.   foreach ($gramTable as $md5 => $name){
  36.    $infoarray = $listTable[$md5];
  37.    $i++;
  38.   ?>
  39.   <tr>
  40.     <td><?php print($i); ?>&nbsp;</td>
  41.     <td><?php print($name); ?>&nbsp;</td>
  42.     <td><?php print($md5); ?>&nbsp;</td>
  43.     <td><?php print($infoarray["BitRate"]); ?>&nbsp;</td>
  44.     <td><a href="programdel.php?program=<?php print($md5); ?>" onClick="return confirm('确定你想要删除这个节目么?删除之后不能恢复!');">删除</a></td>
  45.   </tr>
  46.   <?php 
  47.   }
  48.   ?>
  49. </table>
  50. </body>
  51. </html>