I have the following CSS class along with foreach ():
<section id="cidades">
<div class="listacidade">ESCOLHA UMA OPÇÃO</div>
<ul id="ListandoCidades">
<? foreach($cidades as $valor){ ?>
<a href="<? echo base_url('inicial'); ?>">
<li class="listacidade" id="<? echo $valor->idParametro; ?>">
<img src="<? echo base_url(); ?>site/modules/entrada/images/<?=url_title($valor->parametro);?>.jpg" width="250" height="120" alt=""/>
</li>
</a>
<? } ?>
</ul>
</section>
I am passing the ID by div
. How do I get it back on a next page?