0

*私は codeigniter を初めて使用し、サーバーからファイルをダウンロードする際に行き詰まっています。基本的に私は 2 つの問題に直面しています*

    <input type="<?php 
$this->load->helper('download');
$name = 'ruby_new.xlsx';
$data = file_get_contents("./downloads/ruby_new.xlsx"); // Read the file's contents - cannot use relative path. It will try to call the file from same directory (controller) as this file. In order for it get the contents from the root folder put a . in front of the relative path//
force_download($name, $data); 
 ?>" class="btn btn-primary btn-small" value="download demo">
4

0 に答える 0