header('Content-Type: application/ms word');
header("Content-Disposition: attachment; filename = filename.docx");
header('Content-Transfer-Encoding: binary');
header("Pragma: no-cache");
header("Expires: 0");
header('Cache-Control: must-revalidate');
I used the above code to download a word file with some data from database.
Now, I want to add a logo and name of the company, page number on each and every page of my file. Ηow should i do it?