$file = "test.csv";
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment; filename='.$file);
$content = "Col1,Col2,Col3
";
$content .= "test1,test1,test3
";
$content .= "testtest,ttesttest2,testtest3
";
echo $content;