Export ข้อมูลเป็น ไฟล์ csv

January 2nd, 2008

admin | 1,195 views
ประกาศ Header คล้ายกับ export ไฟล์ word เมื่อครั้งก่อนครับ
code
<?php
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="filename.csv"');
echo"column1,column2,column3,column4,column5,\n";
echo"data1,data2,data3,data4,data5";
?>
You can
leave a response, or
trackback from your own site.
Responses are currently closed, but you can
trackback from your own site.
You can skip to the end and leave a response. Pinging is currently not allowed.
Both comments and pings are currently closed.