I have this query:
while($rows_cursos = mysqli_fetch_array($resultado_cursos)) {
$tabela1 .= '<tr>';
$tabela1 .= '<td style="font-size: 12px">'.$rows_cursos['DataAprovacao'].'</td>';
$tabela1 .= '<td style="font-size: 12px">'.$rows_cursos['IdTipoProduto'].'</td>';
$tabela1 .= '<td style="font-size: 12px">'.$rows_cursos['IdProduto'].'</td>';
$tabela1 .= '<td style="font-size: 12px"> '.$rows_cursos['Quantidade'].'</td>';
$tabela1 .= '<td style="font-size: 12px"> '.$rows_cursos['IdRequerente'].'</td>';
$tabela1 .= '<td style="font-size: 12px"> '.$rows_cursos['IdDestino'].'</td>';
$tabela1 .= '<td style="font-size: 12px"> '.$rows_cursos['Estado'].'</td>';
$tabela1 .= '<td> <select data-qtd3="Fornecedor" style="width:106px" name="Fornecedor[]" id="Fornecedor">
<option></option>
<?php
$sql = "SELECT * FROM Fornecedor ORDER BY Fornecedor ASC";
$qr = mysqli_query($conn, $sql);
while($ln = mysqli_fetch_assoc($qr)){
echo '<option value="'.$ln['Id'].'">'.$ln['Fornecedor'].'</option>';
}
?>
</select></td>';
$tabela1 .= '</tr>';
}
Only select
$tabela1 .= '<td> <select data-qtd3="Fornecedor" style="width:106px" name="Fornecedor[]" id="Fornecedor">
<option></option>
<?php
$sql = "SELECT * FROM Fornecedor ORDER BY Fornecedor ASC";
$qr = mysqli_query($conn, $sql);
while($ln = mysqli_fetch_assoc($qr)){
echo '<option value="'.$ln['Id'].'">'.$ln['Fornecedor'].'</option>';
}
?>
</select></td>';
is not working. Does not return the vendor data I have in the database table