whoo easy
<?php
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=\"test.xls\"");
?>
<?
$array = array(2,234,232,2323);
?>
<table border="1" cellpadding="3" cellspacing="1">
<tr>
<td>CustomerID</td>
<td>CompanyName
<? foreach ($array as $val){
echo $val;
}
?></td>
</tr>
</table>