Dear friends,
i want export the page to word file. Here only the HTML is taking.The php data is not displaying .Why
Thanks in advance.
|
Go4Expert Member
|
|
| 17Oct2010,00:14 | #2 |
|
hm you mean that you want the php script to be exported in word?
you can do like this: <?php $ExcelFileName="test.doc"; header("Content-type: application/x-ms-download"); header("Content-Disposition: attachment; filename=$ExcelFileName"); header('Cache-Control: public'); $content=<<<EOD echo 'php'; whatever you want to write here including a php script it will be included in a string and then go in the output for a doc file EOD; echo $content; ?> |
