Ineedtopostthislinenumbertoanotherprogramphp
<divid="posiciona">
<table id="mostra_prod" cellpadding="1" cellspacing="3" bordercolor="#000">
<tr>
<td align="right" bgcolor="#0a0a96">Aplicação</td>
<td align="left" bgcolor="#0a0a96">Referência</td>
</tr>
<?php
$i=0;
while ($row = mysqli_fetch_array($result_pd)) {
$rfprod = $row['pro_referencia_produto'];
$idref[] = $rfprod;
$i++;
$approd = $row['pro_aplicacao_produto'];
?><tr><?php
echo "<td align='right' style='color: #cfcfd1;'>".$approd."</td>";
echo "<td style='color: #ffffff;'>".$rfprod."</td>";
?></tr><?php
}
?>
</table>
</div>