-2
The select
is being carried by $view->montarComboAreasNoticia()
, what I want is for you to create a session
to save the option I chose when I return to the selection page of select
.
Code:
<select name="FArea" id="select2">
<option value="0">
<?=translate("Todas")?>
</option>
<?$view->montarComboAreasNoticia(); ?>
</select>`
Well you must put the method code
montarComboAreasNoticia()
, modification will have to stay inside must with some simple IF must solve.– SK15