<?php
$image = 'add.png';
header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: application/vnd.ms-excel;charset:UTF-8");
header("Content-Disposition: attachment; filename=filename.xls");
print "\n"; // Add a line, unless excel error..
?>
<table border="1">
<tr>
<th>header 1</th>
<th>header 2</th>
</tr>
<tr>
<td>data 1</td>
<td><img src="C:\\xampp\\htdocs\\mysite\\engine\\pictures\\add.png"></td>
</tr>
</table>
This code is exporting one image into an excel sheet.I want use modify my code in order to export for example 2 images in 2 different excel sheets.Is this possible wihtout phpexcel?I want to do this with pure php,or javascript if its possible.Thanks in advance.