estoy realizando algunas exportaciones de tablas html resultantes de consultas a mysql, mediante php.. y logre hacerlo enviando las cabeceras de excel:
Código PHP:
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: attachment; filename=Reporte_Informes_".date("Y-j-m")."_".date("h-i-s").".xls");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
header("Pragma: public");