Code:
foreach ($controller->ListaDados($objCheck) as $objCheck) { ?>
<table bordercolor="grey" border="1" class="container">
<tbody>
<tr>
<td colspan="2" align="Center"><?php echo $objCheck->getemail(); ?></td>
</tr>
</tbody>
</table>
<?php } ?>
In this echo
is showing the following information.
Bank String:
Prezado Cliente <b><br><br>Pedido: <b>4264136</b>, NF: <b>1448692</b> <br>Pedido: <b>4264138</b>, NF: <b>1448693</b> <br>Pedido: <b>4264140</b>, NF: <b>1448694</b> <br><br>Data: <b>2015-12-08 10:37:49</b> Hora: <b>2015-12-08 10:37:49</b><br><br>Link do comprovante: <br><br><img src='cid:1krrpu5mb4br3'/>
Is there a way to show only the Orders and NF handling this in php and not in the database? Because that's all I care about.
Because the column inside the bank has all this information and I did not want to mess with it.