Hi, it appears browsers don't like spaces when it comes to forcing a filename through a header
header('Content-disposition: attachment; filename=foo bar.txt');
Firefox handles it as just foo causing it to screwup the download.
IE handles it as bar.txt which actually downloads but cuts off the file.
Anyone know how to get around this.