Created
January 20, 2016 14:04
-
-
Save MkShaman/8610d7a6e675a437fe8f to your computer and use it in GitHub Desktop.
download file bitrix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="file.pdf">ссылка для скачивания</a> | |
| только браузеры зачастую открывают pdf файлы сами и не предлагают скачивать... | |
| если именно скачать то ссылку новую страничку в новом окне с кодом PHP | |
| $file = "files/archive.rar"; | |
| header ("Content-Type: application/octet-stream"); | |
| header ("Accept-Ranges: bytes"); | |
| header ("Content-Length: ".filesize($file)); | |
| header ("Content-Disposition: attachment; filename=".$file); | |
| readfile($file); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment