My code output is like this which prints upto 100 table rows.
I want to export it in excel as well
<h2>Results</h2>
<table width=80%><tr><th width="40%">Head1</th><th nowrap width="20%">Head2</th><th nowrap width="20%">Head3</th></tr>
<?php $count = count($abc);
for ($i = 0; $i < $count; $i++)
{
$cont=round($abc[$i]->a);
$pa = $p->get($abc[$i]->u);
echo "<tr><td><a href='" . $abc[$i]->u . "' target='_blank'>" . $abc[$i]->u . "</a></td><td align='center'>" . $cont . "</td><td align='center'>" . $pa . "</td></tr>";
}
?>
</table>

header("Content-Type: application/vnd.ms-excel; charset=utf-8");and then output your table, but I would recommend using a CSV or PHPExcel as stated in the other answers. – SaschaM78 Dec 29 '12 at 8:52