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

P2P编程

开发平台:

Visual C++

  1. <?php 
  2. include_once 'functions.php'; 
  3. // ls = 0 shuffle, 1 order by times, 2 order by name
  4. $sort = preg_match("/^[012]$/", $_GET['ls']) ? $_GET['ls'] : 1;
  5. ?>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  10. <title>节目管理</title>
  11. <style type="text/css">
  12. <!--
  13. .style1 {
  14. font-size: 18px;
  15. font-weight: bold;
  16. }
  17. -->
  18. </style>
  19. </head>
  20. <body>
  21. <p align="center" class="style1">节目列表 <a href="channel.php">频道列表</a></p>
  22. <p align="center" >
  23. </p>
  24. <center>
  25. [排序 -
  26. <?php
  27. if ($sort!=0){
  28. ?>
  29. <a href="program.php?ls=0">缺省顺序</a>
  30. <?php
  31. }
  32. else{
  33. ?>
  34. 缺省顺序
  35. <?php
  36. }
  37. ?>
  38.     |
  39. <?php
  40. if ($sort!=1){
  41. ?>
  42. <a href="program.php?ls=1">按时间逆序</a>
  43. <?php
  44. }
  45. else{
  46. ?>
  47. 按时间逆序
  48. <?php
  49. }
  50. ?>
  51.     |
  52. <?php
  53. if ($sort!=2){
  54. ?>
  55. <a href="program.php?ls=2">按节目名顺序</a>
  56. <?php
  57. }
  58. else{
  59. ?>
  60. 按节目名顺序
  61. <?php
  62. }
  63. ?>
  64.      ]
  65. </center>
  66. <table width="80%" border="1" align="center">
  67.   <tr>
  68.     <td nowrap><strong>编号</strong></td>
  69.     <td nowrap><strong>节目名</strong></td>
  70.     <td nowrap><strong>MD5</strong></td>
  71.     <td nowrap><strong>码率</strong></td>
  72.     <td nowrap><strong>操作</strong></td>
  73.   </tr>
  74.   <?php 
  75.   $listTable = getProgramInfoTable();
  76.   $gramTable = getProgramTable($sort);
  77.   
  78.   $i=0;
  79.   foreach ($gramTable as $md5 => $name){
  80.    $infoarray = $listTable[$md5];
  81.    $i++;
  82.   ?>
  83.   <tr>
  84.     <td><?php print($i); ?>&nbsp;</td>
  85.     <td><?php print($name); ?>&nbsp;</td>
  86.     <td><?php print($md5); ?>&nbsp;</td>
  87.     <td><?php print($infoarray["BitRate"]); ?>&nbsp;</td>
  88.     <td><a href="programdel.php?program=<?php print($md5); ?>" onClick="return confirm('确定你想要删除这个节目么?删除之后不能恢复!');">删除</a></td>
  89.   </tr>
  90.   <?php 
  91.   }
  92.   ?>
  93. </table>
  94. </body>
  95. </html>