Skip to content

Instantly share code, notes, and snippets.

@faizanayubi
Created May 10, 2015 09:11
Show Gist options
  • Save faizanayubi/7a6de64bdce182f0bd60 to your computer and use it in GitHub Desktop.
Save faizanayubi/7a6de64bdce182f0bd60 to your computer and use it in GitHub Desktop.
Creating Word Document with PHP
<?php
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo "<html>";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">";
echo "<body>";
echo "<h1>My first document</h1>";
echo "</body>";
echo "</html>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment