วันพฤหัสบดีที่ 25 ตุลาคม พ.ศ. 2550

PHP Export Data To Ms Word File

# include this tagcode on top file
header('Content-type: application/ms-word');
header('Content-Disposition: attachment; filename="testing.doc"');

PHP Export Data To Ms Excel File

# include this tagcode on top file
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="testing.csv"');