csv export with php

headers for exporting data as csv file download.

header(”Content-type: application/x-msdownload;charset=utf-8″);
header(”Content-Disposition: attachment; filename=name_”.date(’d.m.Y.G.i’).’.’.$type);
header(”Pragma: no-cache”);
header(”Expires: 0″);
echo pack(”CCC”,0xef,0xbb,0xbf); // bom to tell fucking Excel that its utf8