header("Content-Disposition: attachment; filename=\"".basename($path_file)."\"");
header ("Content-Transfer-Encoding: binary");
header("Content-Length: ".$content_length);
header("Content-Type: application/octet-stream");
if (!readfile($path_file))
{
die("Cannot read the file(".$path_file.")");
}

という感じで、フォームで飛んだ先のhoge.phpでファイルをダウンロードさせているのですが、このヘッダーを出力させた後で

「○○○○を送信しました」

という結果表示を行いたいのですが
header出力の後にHTMLを出力しようとしてもダメですよね?

なにかうまい方法があったら教えてください。