How to Export HTML page in Excel Using PHP
Get the solution ↓↓↓I want to export my web page in excel file. below code -
<?php
$file="My_Excel.xls";
header("Content-type: application/vnd.ms_excel");
header("Content-Disposition: attachment; filename=$file");
?>
Not working please suggest.
Answer
Solution:
Right Code is -
<?php
$file="My_Excel.xls";
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file");
?>
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: dompdf image not found or type unknown
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.