$file_format = "testfile.csv";
$file = fopen($file_format,"w");
$header = array(array('Class Name','Group'));
foreach($header as $fields)
{
fputcsv($file, $fields);
}
fclose($file);
My question is how do I merge the group cells as image below?
