3
I have this select
:
<div>
<label for="Indicar">Colaborador: </label>
<select class="form-control" name="Notas" id="Notas26">
<option></option>
<?php
$sql = "SELECT * FROM raddb.usuarios ORDER BY nome ASC";
$qr = mysqli_query($conn, $sql);
while($ln = mysqli_fetch_assoc($qr)){
echo '<option value="'.$ln['id'].'">'.$ln['nome'].'</option>';
}
?>
</select>
</div>
Within the select
several collaborators will appear. I want to be able to select several collaborators.
I tried to follow this question, but I couldn’t implement.
Just put
multiple
in select.– Sam
@Sam, yes I have. I was trying to use the code of your answer, because Multiple, creates a very large box, but I solve with css
– Bruno