<?php
header("Content-type: application/vnd.ms-excel; name='excel'");

header("Content-Disposition: filename=export.xls");
header("Pragma: no-cache");
header("Expires: 0");

?>

I am trying to save a part of html table into an excel. I want to save
partially inorder to omit images in the same html table. Ia m using
the above code to save the table.

Is there any way out to accomplish this?

Thanking in advance for any tips or suggestions

Reply via email to