My goal is to redirect browser to a new page after browser issues the attachment download.
header("Content-type: text/csv");
header("Cache-Control: no-store, no-cache");
header("Content-disposition: attachment;filename=file.csv");
// csv output logic here
// forward to next page
header("Location: $url");
Is it possible ?
UPDATE : the result of above
The last line of CSV shows PHP error :
Cannot modify header information - headers already sent by...
It is because CSV logic part has modified the contents before the line header("Location: $url");
UPDATE : I tried an alternative method: to echo a small HTML consist of a key line <meta http-equiv="refresh" content="0; url=$url" /> ( of course <html> <head> <body> and even DOCTYPE are also echoed ). But still, the HTML codes are shown in the CSV content.

PHP header has already sent. I will update the question shortly – Shivan Raptor Dec 17 '12 at 3:56