How to export html table to excel or pdf in php

前端 未结 5 1099
甜味超标
甜味超标 2020-11-30 02:56

In my php page i have a table and if the user requires he has to export that table to excel sheet..

The code for displaying the table is:

$sql=mysql         


        
5条回答
  •  遥遥无期
    2020-11-30 03:30

    If all you want is a simple excel worksheet try this:

    header('Content-type: application/excel');
    $filename = 'filename.xls';
    header('Content-Disposition: attachment; filename='.$filename);
    
    $data = '
    
        
    
    
    
       
    Cell 1Cell 2
    '; echo $data;

    The key here is the xml data. This will keep excel from complaining about the file.

提交回复
热议问题