Re: Help w/ 'headers already sent' and file download

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 5/16/06, Mike Walsh <mike_walsh@xxxxxxxxxxxxxx> wrote:
I have an application which I am working on which takes a file supplied by
the user via a File Upload, peforms some processing on it, then prompts the
user to download a generated CSV file.  What I would like to do is report
some processing statistics prior to the user prior to sending the CSV steam.

My CSV export ends with this:


        header("Content-type: application/vnd.ms-excel") ;
        header("Content-disposition:  attachment; filename=CSVData." .
date("Y-m-d").".csv") ;

        print $csvStream ;

Unfortunately if I display any content prior to sending the CSV stream I get
the 'headers already sent' error message.

Is there a way to both display a web page and send content to be saved by
the user?  If someone knows of an example I could look at I'd be greatful.

No, you cannot display both a webpage and send a file
on the same page to the user.

What you could do is save the processed file in a temporary
folder and provide a link to download the file in your processing
statistics page. Or, you could redirect the user to the file after
showing the statistics page.

Rabin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux