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

P2P编程

开发平台:

Visual C++

  1. <?php 
  2. include_once 'functions.php'; 
  3. $sort = preg_match("/^[01]$/", $_GET['ls']) ? $_GET['ls'] : 1;
  4. if($sort == 1) $btn_value = 'Order by MD5';
  5. else $btn_value = 'Order by name';
  6. ?>
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  11. <title>节目管理</title>
  12. <style type="text/css">
  13. <!--
  14. .style1 {
  15. font-size: 18px;
  16. font-weight: bold;
  17. }
  18. -->
  19. </style>
  20. </head>
  21. <body>
  22. <p align="center" class="style1">节目列表 <a href="channel.php">频道列表</a></p>
  23. <p align="center" >
  24. </p>
  25. <center>
  26. <input type='button' value='<?=$btn_value?>' onclick='window.location="<?=$_SERVER['PHP_SELF'].'?ls='.intval(!$sort)?>"'>
  27. </center>
  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>MD5</strong></td>
  33.     <td nowrap><strong>码率</strong></td>
  34.     <td nowrap><strong>操作</strong></td>
  35.   </tr>
  36.   <?php 
  37.   $listTable = getProgramInfoTable();
  38.   $gramTable = getProgramTable($sort);
  39.   
  40.   $i=0;
  41.   foreach ($gramTable as $md5 => $name){
  42.    $infoarray = $listTable[$md5];
  43.    $i++;
  44.   ?>
  45.   <tr>
  46.     <td><?php print($i); ?>&nbsp;</td>
  47.     <td><?php print($name); ?>&nbsp;</td>
  48.     <td><?php print($md5); ?>&nbsp;</td>
  49.     <td><?php print($infoarray["BitRate"]); ?>&nbsp;</td>
  50.     <td><a href="programdel.php?program=<?php print($md5); ?>" onClick="return confirm('确定你想要删除这个节目么?删除之后不能恢复!');">删除</a></td>
  51.   </tr>
  52.   <?php 
  53.   }
  54.   ?>
  55. </table>
  56. </body>
  57. </html>