<?php
function kirimkeword(){
$document = file_get_contents("template.rtf");
$PrintToDoc=Array(
"[no_kontrak]" =>"01.2.0716.1881",
"[nama]" =>"AGUS SALIM SIREGAR",
"[pekerjaan]" =>"Karyawan Swasta",
"[alamat]" =>"JL. Aman I Gg. Mahoni No. 2",
"[tanggal]" =>"07/09/2015"
);
foreach($PrintToDoc as $i=>$v) {
$document = str_replace($i,$v,$document);
}
$file="template.rtf";
header("Content-type: application/msword");
header("Content-disposition: inline; filename=".basename($file));
header("Content-length: " . strlen($document));
echo $document;
}
?>