channel.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 = 'Shuffle';
  5. else $btn_value = 'Order by times';
  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="program.php">节目列表</a></p>
  23. <p align="center" >
  24. <form name="form1" method="post" action="channeladd.php">
  25.   <div align="center">请输入节目数:
  26.     <input name="programnum" type="text" id="programnum" value="5" size="5">
  27.     <input type="submit" name="Submit" value="增加新频道">
  28.   </div>
  29. </form>
  30. </p>
  31. <center>
  32. <input type='button' value='<?=$btn_value?>' onclick='window.location="<?=$_SERVER['PHP_SELF'].'?ls='.intval(!$sort)?>"'>
  33. </center>
  34. <table width="80%" border="1" align="center">
  35.   <tr>
  36.     <td nowrap><strong>编号</strong></td>
  37.     <td nowrap><strong>频道信息</strong></td>
  38.     <td nowrap><strong>码率</strong></td>
  39.     <td nowrap><strong>节目列表</strong></td>
  40.     <td nowrap><strong>操作</strong></td>
  41.   </tr>
  42.   <?php 
  43.   $listTable = getChannelTable($sort);
  44.   $gramTable = getProgramTable($sort);
  45.   
  46.   $i=0;
  47.   foreach ($listTable as $listmd5 => $listarray){
  48.    $i++;
  49.   ?>
  50.   <tr>
  51.     <td><?php print($i); ?>&nbsp;</td>
  52.     <td><?php print("<b>".$listarray[1]."</b>[".$listmd5."]"); ?>&nbsp;</td>
  53.     <td><?php print($listarray[0]); ?>&nbsp;</td>
  54.     <td>
  55.     <?php
  56. $size = count($listarray);
  57.     for ($j=2; $j<$size; $j++){
  58. print("<b>".$gramTable[trim($listarray[$j])]."</b>[".trim($listarray[$j])."]<br/>");
  59. }
  60.     ?>
  61.     &nbsp;</td>
  62.     <td><a href="channeldel.php?channel=<?php print($listmd5); ?>" onClick="return confirm('确定你想要删除这个频道么?删除之后不能恢复!');">删除</a></td>
  63.   </tr>
  64.   <?php 
  65.   }
  66.   ?>
  67. </table>
  68. <form name="form1" method="post" action="channeladd.php">
  69.   <div align="center">请输入节目数:
  70.     <input name="programnum" type="text" id="programnum" value="5" size="5">
  71.     <input type="submit" name="Submit" value="增加新频道">
  72.   </div>
  73. </form>
  74. </body>
  75. </html>