Export CSV from Mysql

前端 未结 5 994
伪装坚强ぢ
伪装坚强ぢ 2021-01-27 06:04

I\'m having a bit of trouble exporting a csv file that is created from one of my mysql tables using php.

The code I\'m using prints the correct data, but I can\'t see ho

相关标签:
5条回答
  • 2021-01-27 06:41

    In essence, you can't output the CSV file and the link to it in one go. (You need to introduce the concept of a page "mode" and activate the download mode via a ...pagename.php?mode=download or similar. You could then use PHP's switch statement to switch on $_GET['mode'] in your script.)

    That said, the text/csv content type header you were using is correct, although you may also want to output the Content-Length and Content-Disposition headers. After you've output the file data, also be sure to stop any additional script processing via PHP's exit function.

    Additionally, it would probably be a lot less hassle (and will certainly be faster/more memory efficient) to use MySQL SELECT ... INTO OUTFILE facility (if you have the permissions) rather than use PHP to gather the data.

    0 讨论(0)
  • 2021-01-27 06:45

    Three things to consider:

    1. You're sending headers indicating that the user is going to be downloading a CSV file, but then you send create a link to download it? This isn't correct, you should be linking to this page, and then only outputting the CSV data itself after the headers.

    2. MySQL has the ability to generate CSV output, and you should definitely take advantage of this instead of trying to do it yourself. You can use SELECT INTO ... OUTFILE to do this.

    3. If you must create the CSV using PHP, please use fputcsv to do so. This will handle all the complications of CSV such as escaping and proper formatting. Since fputcsv writes to a file, you could either write it to a temporary file and then output it after you send your headers, or use the following trick to output it directly:

    Do this after sending headers:

    $fp = fopen('php://output', 'w');
    while( $row = mysql_fetch_row( $export ) ) {
        fputcsv($fp, $row);
    }
    
    0 讨论(0)
  • 2021-01-27 06:53

    I think the mySQL => CSV is common problem which is part of each PHP forum. I have try to solve this issue in a common way and implement an free export lib for PHP which is very similar to the Google AppInventor philosophie. DragDrop and hide the coding stuff.

    Use the lib and create your Export via Click&Point.

    Common Demos: http://www.freegroup.de/software/phpBlocks/demo.html Link to editor: http://www.freegroup.de/test/editor/editor.php?xml=demo_sql.xml

    worth a look

    Greetings

    Andreas

    0 讨论(0)
  • 2021-01-27 06:57

    You should not put the link in the same file that generates the csv, as the link will not be in the csv itself!

    Do something like:

    <a href="fileThatGeneratesTheCSV.php">Download CSV</a>
    

    and it should work

    0 讨论(0)
  • 2021-01-27 07:03

    You can't have text and a download on the same page. You need to have a link to the download area, which could just be a GET parameter leading to a function, which then does all the processing, displays headers, and echoes the content of the CSV.

    For example, you could have <a href="foo.php?action=download">Click here to download CSV</a>, then in your code have if ($_GET['action'] === 'download'), get the data from the database, format it, send the headers, and echo the data. And then die(), because that part of the script can accomplish no more.

    0 讨论(0)
提交回复
热议问题