Du kan göra nåt i den här stilen?
temp.php
Kod:
<?
$filnamn = "temp.xls";
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: attachment; filename=$filnamn");
?>
<table>
<tr><td>hej</td><td>hopp</td></tr>
<tr><td colspan="2">hej hopp</td></tr>
</table>
Mvh