yano3nora
11/14/2017 - 5:26 AM

[html: Download link] Forced download link by a tag with download attribute. #html #cakephp

[html: Download link] Forced download link by a tag with download attribute. #html #cakephp

<!-- 
@link https://webdesign.tutsplus.com/ja/tutorials/quick-tip-using-the-html5-download-attribute--cms-23880
-->

<!-- Should be html5. -->
<a href="path/to/file.txt" download="Your Document.txt">Download Document</a>

<!-- In view on CakePHP. -->
<?php echo $this->Html->link(
  '<i class="fa fa-download"></i> Download Document',
  'path/to/file.txt',
  [
    'escape' => false,
    'download' => 'Your Document.txt',
  ]
) ?>