0

I have a table in html file and want to export it to an excel file automatically without ask me for save or open it. My code is(in PHP) :

header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment;Filename=airport.xls");

echo "<html>";
echo "<body>";
echo "$list";
echo "</body>";
echo "</html>";

How can I do this?

user123456
  • 11
  • 1
  • 1
  • 3

1 Answers1

1

I think your php code is perfect for excell download ,but your need is not related to code that disable popup block of "save or open " for that you may refer some other site like

Disable “Do you want to open or save this file?” download prompt"

Pk boss
  • 274
  • 1
  • 13