I have use following code for download excel file.
$filename = "property.xls"; // File Name
// Download file
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
But, it will download blank excel file i need to download content of <table>
tag.
I have place this code at top of page and during reloading of my page it will download excel file but it was empty every time.