fputcsv() How to insert into new line of a csv file - php
You can insert a new line character /r/n or /n into a csv file using fputcsv() as follows
<?php
fputcsv($csvFile,["\r\n"]);
//or
fputcsv($csvFile,["\n"]);
?>
ALTERNATE TITLES