I have a <select>
and I want it to show titles that are stored in a database. I have found several forms but none has been useful.
If someone can guide me, I would appreciate it: D
This is what I have in my application of c #
<div class="col-sm-4">
<div class="form-group form-group-default input-group required">
<label>Titulo de Lanzamiento</label>
<select class="form-control" id="tipoApp" name="tipoApp" data-init-plugin="select2" required>
<option value=" "></option>
</select>
</div>
</div>
And this is my table
create table Portal
(
Id_Dashboard int,
Fecha_Activacion date,
Fecha_Vencimiento date,
Pais varchar(200),
Titulo_Lanzamiento varchar(200),
Nombre_Banner varchar(200),
Url_Img varchar(200),
Estatus int
)
The titles that I seek to obtain are according to the country