Hey guys I'm using the Laravel framework. I fetched data from my database and populated my drop down list like this.
<select class="form-control" id="username" name="username">
<option value="" selected>Select User</option>
@foreach($getUsers as $list)
<option value="" ></option>
@endforeach
</select>
I want to be able to click one of the options in the drop down list and send the value through a url (preferably using href).
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire