channeladd.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">输入频道信息</p>
  20. <form name="form1" method="post" action="channeladddo.php">
  21.   <table border="0" align="center" cellspacing="5">
  22.     <tr>
  23.       <td width="62">频道名</td>
  24.       <td width="122"><input name="channel" type="text" id="channel"></td>
  25.     </tr>
  26.     <tr>
  27.       <td>码率</td>
  28.       <td><input name="bitrate" type="text" id="bitrate" value="40" size="10"></td>
  29.     </tr>
  30.     <tr>
  31.       <td>添加节目</td>
  32.       <td>
  33. <?php 
  34.   $gramTable = getProgramTable($sort);
  35.   $programnum = $_REQUEST["programnum"];
  36.   for($j=0; $j<$programnum; $j++){
  37. ?>
  38.       <select name="programlist[]" size="1" id="programlist[]">
  39. <?php  
  40. foreach ($gramTable as $md5 => $name){  
  41. ?>      
  42.         <option value="<?php print($md5); ?>"><?php print($name."[".$md5."]"); ?></option>
  43. <?php
  44. }
  45. ?>        
  46.       </select><br/>
  47. <?php
  48. }
  49. ?>   
  50.       </td>
  51.     </tr>
  52.     <tr>
  53.       <td colspan="2" align="center"><input type="submit" name="Submit" value="提交">
  54.       <input type="reset" name="Submit2" value="重置"></td>
  55.     </tr>
  56.   </table>
  57.   <p align="center" ><a href="channel.php">返回频道列表</a></p>
  58.   <p>&nbsp;</p>
  59. </form>
  60. </body>
  61. </html>