I have very limited experience using PHP,
I am trying to update a word doc and then allow the user to save it .
Would anyone show me how to do this, have google'd and found some tips.
Searched thru Beginning PHP and Mysql 5 by Jason Gilmore and have no idea how to populate the MergeFields within the doc, this is my code to display the Word Doc to the user.
It shows the doc the first time, if I execute the program again it displays ony a blank doc with
[code=php].
[code=php]<?
header("Content-Type: application/msword");
header('Content-Disposition: attachment; filename="RenewalTest.doc"');
?>[code=php]
Any help would be greatly appreciated.