-1
I did select and in the database when register the value of select saved normally, but at the time of selection is not displayed.
CODE
<label for="exampleFormControlInput1">Fornecedor</label>
<select class="form-control" name="fornecedor">
<option>Selecione o Fornecedor</option>
<?php
$result = "select nm_forn from tb_fornecedor";
$resultado = mysqli_query($connection, $result);
while($row = mysqli_fetch_assoc($resultado)) {
echo '<option value="'.$row['nm_forn'].'"></option>';
}
?>
</select>