I was hoping some one could help me or at least orient me. I have this code:
<?php
header("Content-Type: application/vnd.ms-excel");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=ReporteGeneral.xls");
?>
And any html o PHP code that goes under it will be converted into an Excel file which can be saved. My question is this, whenever I try to generate a page with images, the images are not included in the .xls file. Is there a way to do this (include an image into this .xls file)?