How do I return the values in a select with a foreach?
I have two values in my Events table in the event_estate column which are Started and Completed , how do I get the two of them since this way only It gives me only one value and not the other.
Thank you in advance.
This is my code:
<div class="form-group">
<label for="estado_evento">Estado del Evento:</label>
<select name="estado_evento" id="estado_evento" class="form-control">
<option>
<?php echo $eventos->estado_evento?>
</option>
</select>
</div>