I am forcing a text file download but I don’t get a line break in the text file. It shows \r\n
header("Content-type: text/text");
header("Content-Disposition: attachment; filename=testi.txt");
foreach($results as $result){
echo $result['xrt'].' '.$result['CMP'].' '.$result['Add'].' '.$result['AFG'].' '.'Times'.' '.$result['range'].'\r\n';
}
You could use
PHP_EOLOr if you must type them, use:
"\r\n"