01.
<?php
02.
require_once
'PHPWord.php'
;
03.
04.
$PHPWord
=
new
PHPWord();
05.
06.
$document
=
$PHPWord
->loadTemplate(
'Template_ValueN1.docx'
);
07.
08.
$document
->setValue(
'Value0'
,
'ภาษาไทย'
);
09.
10.
11.
$nowsheet
=
date
(
"s"
);
12.
$document
->save(
'Solarsystem1_n1.docx'
);
13.
14.
echo
"<script>window.location='Solarsystem1_n1.docx';</script>"
;
15.
16.
?>