我是codeigniter的新手。我正在开发一个可以上传和查看PDF文件的网站。我已经成功上传了。
问题是,每当我想在浏览器中查看上传的文件时,它都会自动下载。我想在浏览器中查看PDF文件。我怎么能这样做?
这是 VIEW
中的代码<?php
echo '<table class = "table table-striped">';
echo '<tr>';
echo '<th class="table_head">Filename</th>';
echo '<th class="table_head">Department</th>';
echo '<th class="table_head">Uploaded by</th>';
echo '<th class="table_head"></th>';
echo '</tr>';
if(isset($tbl_uploaded) && is_array($tbl_uploaded) && count($tbl_uploaded) > 0)
{
foreach($tbl_uploaded as $uploaded)
{
echo '<tr>';
echo '<td>'. $uploaded->name .'</td>';
echo '<td>'. $uploaded->department .'</td>';
echo '<td>'. $uploaded->uploader .'</td>';
echo '<td><a href="'. base_url().'uploads/'.$uploaded->name .'" target="_new">View</a></td>';
echo '</tr>';
}
}
echo '</table>';
?>
先谢谢你们
答案 0 :(得分:0)
您必须更改浏览器设置。如果您使用的是Firefox,则只需打开菜单即可 选项 - &gt;应用程序然后选择便携式文档格式(pdf)操作以在Firefox中设置预览。
答案 1 :(得分:0)
你可以尝试这个,我使用这段代码从我的数据库生成一封信,我也在使用codeigniter。
function createPDF()
{
$data['']= $this->input->post("");
$this->load->library('mpdf');
$this->load->model('');
$query = $this->'your_model'->'model_name'($data);
if($query!=null)
{
$hello .=' Insert your letter here
<p>' .$data->something. '</p> //fetch something from your database';
$mpdf=new mPDF('ISO-8859-1','letter', 10, 'Arial', 15, 15, 16, 16, 9, 9, 'P');
$stylesheet = file_get_contents(base_url().'css/pdf.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->SetHTMLHeader('<img src="'.base_url().'css/edrsletter.jpg"></img>');
$mpdf->WriteHTML($hello);
$mpdf->SetFooter(' Sample PDF template - {PAGENO}');
$mpdf->Output();
}
}