document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3. function kirimkeword(){
  4.     $document = file_get_contents("template.rtf");
  5.     $PrintToDoc=Array(
  6.         "[no_kontrak]"      =>"01.2.0716.1881",
  7.         "[nama]"            =>"AGUS SALIM SIREGAR",
  8.         "[pekerjaan]"       =>"Karyawan Swasta",
  9.         "[alamat]"          =>"JL. Aman I Gg. Mahoni No. 2",
  10.         "[tanggal]"         =>"07/09/2015"
  11.         );         
  12.    
  13.         foreach($PrintToDoc as $i=>$v) {
  14.             $document = str_replace($i,$v,$document);
  15.         }
  16.         $file="template.rtf";
  17.         header("Content-type: application/msword");
  18.         header("Content-disposition: inline; filename=".basename($file));
  19.         header("Content-length: " . strlen($document));
  20.         echo $document;
  21. }
  22.  
  23. ?>
');