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

P2P编程

开发平台:

Visual C++

  1. <?php 
  2. include_once 'functions.php'; 
  3. $md5 = $_REQUEST["program"];
  4. $listTable = getChannelTable();
  5. foreach ($listTable as $chmd5 => $charray){
  6. $size = count($charray);
  7. for($i=2; $i<$size; $i++){
  8. $pmd5=trim($charray[$i]);
  9. if (strcmp($md5, $pmd5)==0){
  10. print("此节目已被频道<b>".trim($charray[1])."</b>收录,无法删除。");
  11. print('<p align="center" ><a href="program.php">返回节目列表</a></p>');
  12. exit;
  13. }
  14. }
  15. }
  16. $filename = PROGRAM_DIR . "/" . $md5;
  17. if (!file_exists($filename)){
  18. print("此节目已不存在,删除命令无效。");
  19. print('<p align="center" ><a href="program.php">返回节目列表</a></p>');
  20. exit;
  21. }
  22. shelldel($filename);
  23. ?>
  24. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  25. <html>
  26. <head>
  27. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  28. <title>节目管理 - 删除节目</title>
  29. <style type="text/css">
  30. <!--
  31. .style1 {
  32. font-size: 18px;
  33. font-weight: bold;
  34. }
  35. -->
  36. </style>
  37. </head>
  38. <body>
  39. <p align="center" class="style1">删除节目成功!</p>
  40. <p align="center" class="style1"><a href="program.php">返回节目列表</a></p>
  41. </body>
  42. </html>