-
-
Save githubschik/418de57add273aba3c0ed7ee4ba7e9e6 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