Pistolero, добавь к заголовкам
if ($n == $tf1) {
$tmpfile = file_get_contents("temp/$n.$tf");
header('Content-Disposition: attachment; filename='. $art['name'] .'txt');
header('Content-Type: application/force-download');
header('Content-Transfer-Encoding: binary');
header('Content-Description: inline; File Transfer');
header('Content-Length: ' . strlen($tmpfile));
echo $tmpfile;
}