Просмотр файла download/loading.php

Размер файла: 1.04Kb
  1. <?php
  2. /*
  3. =============================================
  4. Движок: SHCMS Engine
  5. =============================================
  6. Название файла: Обменник - Скачивание файла
  7. =============================================
  8. Official website: http://shcms.ru
  9. =============================================
  10. */
  11. define('SHCMS', true);
  12. include_once'../system/inc/basic_settings.php';
  13. if($_GET['id']){$id = $_GET['id'];}
  14. $sfile = mysql_fetch_array(mysql_query("SELECT * FROM download_file WHERE id=$id"));
  15.  
  16. if(!$id)
  17. {
  18. header("Location: files.php?id=$sfile[id]");
  19. }
  20. else
  21. {
  22.  
  23. mysql_query("UPDATE `download_file` SET cou='".($sfile['cou']+1)."' WHERE `id`='$id' LIMIT 1");
  24.  
  25. header('Content-Disposition: attachment; filename="files_obmen/'.$sfile['name'].'"');
  26. header("Content-Type: application/force-download");
  27. header("Content-Type: application/octet-stream");
  28. header("Content-Type: application/download");
  29. header("Content-Description: File Transfer");
  30. echo file_get_contents($path_name);
  31. exit();
  32. }
  33.  
  34.  
  35.  
  36.  
  37.  
  38. ?>