I build a csv with php,
but at the moment I have the problem that it will not break the line in the .csv file.
I have this:
$users = $row['COL 1']."".$row['COL 2']."".$row['COL 3']."".$row['COL 4'];
This is what I tried:
$users = $row['COL 1']."\n\r".$row['COL 2']."\n\r".$row['COL 3']."\n\r".$row['COL 4'];
I want to get after the line break a new column not a new row. Something like this:
| A |
__|____________________________|
1 | name 1 <-line break here |
| name 2 <- this shall happen|
_______________________________|
but it did not work, please need some help:)