<select name="liste" size="1" id="liste" onchange="run(this)" required>
<option value="" selected="selected" disabled="disabled">Choix du matériel</option>
<?php include('../config.php');
$select = "select * FROM materiel ORDER BY type ASC";
$result = $conn->query($select);
$total = mysqli_num_rows($result);
while($donnees = mysqli_fetch_array($result))
{
?>
<option value="<?php echo $donnees['detail'] ?>" title="<?php echo $donnees['type']. " " .$donnees['detail']; ?>"><?php echo $donnees['type']; ?></option>
<?php } ?>
</select> |