buat file word (.docx)
Buat Script php
<?php
require 'vendor/autoload.php';
$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor('template.docx');
$templateProcessor->setValues([
'nama' => 'fahri',
'umur' => '31',
'tanggal' => date('d-m-Y'),
]);
header("Content-Disposition: attachment; filename=template.docx");
$templateProcessor->saveAs('php://output');
2,188 total views