$file = 'informe.xls';
header ("Content-Disposition: attachment; filename=".$file."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($file));
readfile($file);