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');
上記のコードを使用して、データベースからいくつかのデータを含むワードファイルをダウンロードしました。
ここで、ファイルのすべてのページに会社のロゴと名前、ページ番号を追加したいと考えています。どーすればいいの?