Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter Community Voice - Generating PDF files using CodeIgniter
#28

[eluser]Thiago Luiz[/eluser]
Put the pdf file into a subfolder on the same level of the CI system folder. In the controller, write a function with following contents:

$this->load->helper ( ‘download’);
$data = file_get_contents ( “subfolder / file.pdf”);
$name = ‘file.pdf’;
force_download ($name, $data);


Messages In This Thread
CodeIgniter Community Voice - Generating PDF files using CodeIgniter - by El Forum - 05-08-2009, 06:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB