Welcome Guest, Not a member yet? Register   Sign In
Exporting to microsoft word documents
#4

[eluser]Crafter[/eluser]
Hey Derek, long time...

Quite correct on your header.

Here's how I force the page into the office application (and give it a file name too!

Code:
header("Content-Type: application/vnd.ms-word");
   header("Expires: 0");
   header("Cache-Control:  must-revalidate, post-check=0, pre-check=0");
   header("Content-disposition: attachment; filename=\"mydocument_name.doc\"");

   $output = $this->load->view("myreport", $mydata);
   echo $data;
   exit;

  // ...or just use
  // ...$this->load->view("myreport"< $mydata, true);


Messages In This Thread
Exporting to microsoft word documents - by El Forum - 09-13-2007, 08:34 PM
Exporting to microsoft word documents - by El Forum - 09-27-2007, 01:43 PM
Exporting to microsoft word documents - by El Forum - 09-27-2007, 03:13 PM
Exporting to microsoft word documents - by El Forum - 09-27-2007, 11:59 PM
Exporting to microsoft word documents - by El Forum - 09-28-2007, 01:51 AM
Exporting to microsoft word documents - by El Forum - 12-08-2007, 06:19 PM
Exporting to microsoft word documents - by El Forum - 02-25-2009, 08:01 AM
Exporting to microsoft word documents - by El Forum - 02-25-2009, 02:10 PM
Exporting to microsoft word documents - by El Forum - 06-06-2009, 01:44 PM
Exporting to microsoft word documents - by El Forum - 07-06-2009, 09:05 PM
Exporting to microsoft word documents - by El Forum - 10-29-2009, 06:55 AM
Exporting to microsoft word documents - by El Forum - 10-29-2009, 11:01 AM
Exporting to microsoft word documents - by El Forum - 10-29-2009, 11:14 AM
Exporting to microsoft word documents - by El Forum - 10-29-2009, 11:16 AM
Exporting to microsoft word documents - by El Forum - 10-29-2009, 07:12 PM
Exporting to microsoft word documents - by El Forum - 11-01-2009, 06:08 AM
Exporting to microsoft word documents - by El Forum - 05-08-2010, 09:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB