here is current way i'm doing for generate csv file in php,
$path = $url . 'temp/' .$filename.'.csv';
fputcsv($fp, $heders, ",");
foreach ($new_data as $line) {
fputcsv($fp, $line, ",");
}
fclose($fp);
here is problem which i have,
this is data i have in data set,
Brüel & Kjæ, Type 4226, S/N: 2433646
when generate csv file it's change to this,
Brüel & Kjæ, Type 4226, S/N: 2433646
i need to get exactly same character to csv. please help me to solve this issue :(
Put this line of code at the top of the file in php,
Hope it will may helpful to resolve your issue.
Thanks.