Welcome Guest, Not a member yet? Register   Sign In
File Downloading Problem
#1

[eluser]penta997[/eluser]
Hi. I want to download a pdf file with I've generated. But this is not work.
Code:
function index()
  {
      echo anchor('test/get_pdf','download');
  }
  function get_pdf()
  {
      $data = file_get_contents("./filename.pdf"); // Read the file’s contents
      $name = 'filename.pdf';
      //
      force_download($name, $data);
   }


   function generate_pdf()
   {
       $this->load->library('mpdf');
       $this->mpdf->WriteHTML('<p>Hallo World</p>');
       $this->mpdf->Output('filename.pdf','F');
   }


Messages In This Thread
File Downloading Problem - by El Forum - 02-09-2011, 04:22 PM
File Downloading Problem - by El Forum - 02-09-2011, 08:59 PM
File Downloading Problem - by El Forum - 02-10-2011, 06:23 AM
File Downloading Problem - by El Forum - 02-10-2011, 07:12 AM
File Downloading Problem - by El Forum - 02-10-2011, 08:11 AM
File Downloading Problem - by El Forum - 02-10-2011, 08:26 AM
File Downloading Problem - by El Forum - 02-10-2011, 02:22 PM
File Downloading Problem - by El Forum - 02-10-2011, 04:03 PM
File Downloading Problem - by El Forum - 02-10-2011, 06:04 PM
File Downloading Problem - by El Forum - 02-11-2011, 05:46 AM
File Downloading Problem - by El Forum - 02-11-2011, 06:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB