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?