NOTICE

ms-office 파일 형식으로 다운로드 받기 (Language : php)
  1. <?
  2.     header( "Content-type: application/vnd.ms-word" );
  3.     header( "Content-Disposition: attachment; filename=file.doc" );
  4.     header( "Content-Description: PHP4 Generated Data" );
  5. ?>



위에 나오는 형식대로 문서 윗부분에 넣어 주면 된다.
2, 3번 라인에 있는 bold 부분을 살펴 보면 형식과 파일 이름을 적는 부분이 있다.
그 부분만 수정해서 슬쩍~