I need to populate dropdown with data from mysql database, i do that with this code
Maker: <br>
<select name="maker" >
<?php
$sql="select name from makers";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query)){
?>
<option value="<?php echo $row["name"] ?>"><?php echo $row["name"] ?></option>
<?php
}
?>
</select>
<br>
And now i need to change the design and make it little nicer using bootstrap dropdown, but i don't know how to connect this code with bootstrap code for dropdown