2016-03-18 135 views
0

在我的意見我有一個文件:contract_list.php創建按鈕下載笨

buttons

<td width="1%" class="remove_tag">'; 
if($this->green->gAction("P")) 
{ 
    $tr .='<a title="Preview Contract" id="clk_pri" class="clk_pri"> 
    <img rel="'.$contract['con_id'].'" src="'.site_url('../assets/images/icons/preview.png').'" onclick="preview_contract(event);" style="width:20px;height:20px;"></a>'; 
}$tr .='</td> 

功能預覽時,點擊上面的按鈕

function preview_contract(event){ 
      //Code here event click 
    } 

我要下載文件的.pdf格式的.doc文件夾?但是在數據庫中命名文件記錄。

回答

1

對於codiegniter和force_download($ name,$ data),您可以使用$ this-> load-> helper('download')並將您的文件名傳遞給$ name變量。

public function plaintext() { 
     //load the download helper 
     $this->load->helper('download'); 
     //set the textfile's content 
     $data = 'Hello world! Codeigniter rocks!'; 
     //set the textfile's name 
     $name = 'filedownload.txt'; 
     //use this function to force the session/browser to download the created file 
     force_download($name, $data); 
    } 

對於衆目睽睽之下,你可以參考以下網址

http://code.runnable.com/Uha2YpCDyMQpAAJi/download-file-using-codeigniter

+0

謝謝!工作中 –