RE: [PHP] temp file help

2001-04-17 Thread Randy Johnson
t: Re: [PHP] temp file help Instead of: header("Content-disposition: filename=backup.csv"); try header('Content-Disposition: attachment; filename=backup.csv'); Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org --

Re: [PHP] temp file help

2001-04-17 Thread Phil Driscoll
Instead of: header("Content-disposition: filename=backup.csv"); try header('Content-Disposition: attachment; filename=backup.csv'); Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP General Mailing List (http://www.php.net/

Re: [PHP] temp file help

2001-04-17 Thread Joe Stump
This is a wonderful IE "feature" - it just tries to open everything regardless of the browser type. I'd be interested in any working workarounds for this. I've even sent my own type headers ... all to no avail. --Joe On Mon, Apr 16, 2001 at 03:30:30PM -0700, Randy Johnson wrote: > The following