Empty line in PHP (CodeIgniter) file download
If $contents
in your function does not have a newline, try using the output buffer functions.
At the beginning of your file, before including any other files, call ob_start();
. Then, inside your function, before echo $contents;
, add ob_end_clean();
. This will make sure none of the output from other scripts is sent.