my problem is images !!!! i export table this table html to excel but the images aren't exported in the table .
<table class="order-table table sortable" id="tableadmin">
<thead>
<tr>
<th style="width:8px; min-width:8px; max-width:8px;">ID</th>
<th>Télépro</th>
<th>Date RDV</th>
<th>Heure RDV</th>
<th>Fiche</th>
<th style="width:170px; min-width:170px; max-width:170px;">Compterendu</th>
<th style="width:250px; min-width:250px;">Commentaire commercial</th>
</tr>
</thead>
<tbody id="changetable" class="new">
<tr>
<td>
<?php echo $id ?>
</td>
<td>
<?php echo $login ?>
</td>
<td>
<?php echo $date ?>
</td>
<td>
<?php echo $heure ?>
</td>
<td><img src="../img/fiche.png" />
</td>
<td>
<?php echo $compterendu ?>
</td>
<td>
<?php echo $comment ?>
</td>
</tr>
</tbody>
</table>