将数据库写入CSV文件

时间:2012-05-02 14:34:46

标签: php

  

可能重复:
  PHP - send file to user

我编写了一个脚本,可以将userdata成功输出到我服务器上的CSV文件中。

我的问题:有没有办法让CSV文件弹出,以便用户可以打开它?因此,打开文件的唯一方法是直接从服务器。

1 个答案:

答案 0 :(得分:2)

<?php
    $csv_file = '/path/to/yourfile.csv'; // path to the csv file you're generating on the server

    header('Content-type: text/csv');
    header('Content-Disposition: attachment; filename="'.basename($csv_file));

    readfile($csv_file);
?>