How to export html table to excel or pdf in php

前端 未结 5 1096
甜味超标
甜味超标 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条回答
  •  -上瘾入骨i
    2020-11-30 03:07

    Easiest way to export Excel to Html table

    $file_name ="file_name.xls";
    $excel_file="Your Html Table Code";
    header("Content-type: application/vnd.ms-excel");
    header("Content-Disposition: attachment; filename=$file_name");
    echo $excel_file;
    

提交回复
热议问题