I appreciate if someone can help, pursuing to generate a table with different data collection i have detected different behaviours on custom-code display-message & tcpdf actions, my goal is get similar results of custom-code on tcpdf action
here is a simple code for testing in three different setup-actions
[attachment=1]Captura.JPG[/attachment]
and results for tcpdf action
[attachment=1]Captura1.JPG[/attachment]
here is a simple code for testing in three different setup-actions
<table width="600" height="81" border="1" cellpadding="1" cellspacing="1" bordercolor="#000000">
<?php
for($i=0;$i<4;$i++){
?>
<tr>
<td bgcolor="#CCCCCC"><strong> <?php echo $i; ?></strong></td>
<td bgcolor="#CCCCCC"><strong> title1</strong></td>
<td ><?php echo $form->data['paper1']['posternombre']; ?></td>
<td bgcolor="#CCCCCC"><strong> title2</strong></td>
<td ><?php echo $form->data['paper1']['seccionnombre']; ?></td>
<td bgcolor="#CCCCCC"><strong> title3</strong></td>
<td ><?php echo $form->data['paper1']['tipo']; ?></td>
</tr>
<tr>
<?php
}
?>
</table>
[attachment=1]Captura.JPG[/attachment]
and results for tcpdf action
[attachment=1]Captura1.JPG[/attachment]