You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
387 B
11 lines
387 B
|
19 years ago
|
<?
|
||
|
|
$filename="temp/test.csv";
|
||
|
|
header('Expires: Wed, 01 Jan 1990 00:00:00 GMT');
|
||
|
|
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||
|
|
header('Cache-Control: public');
|
||
|
|
header('Pragma: no-cache');
|
||
|
|
header('Content-Type: application/force-download');
|
||
|
|
header('Content-Length: '.filesize($filename));
|
||
|
|
header('Content-Disposition: attachment; filename='.$filename);
|
||
|
|
readfile($filename);
|
||
|
|
?>
|