Merhaba, PHP ile word dosyası oluşturmak için örnek kod aşağıdaki gibidir:
1 2 3 4 5 6 7 8 9 10 |
<?php header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=deneme.doc"); header("Pragma: no-cache"); header("Expires: 0"); $content = "Merhaba Dünya ! "; echo $content; ?> |