I find the following problem, with the code below I wanted to add more fields without repeating divs
.
Code:
<? foreach($itens as $myrow){ ?>
<div id="LISTA1_FUNDO_PRETO">
TITULO</div>
<?}?>
What I really wanted was to do this, without divs
:
<? foreach($itens as $myrow){ ?>
<div id="LISTA1_FUNDO_PRETO">
TITULO</div>
<div id="LISTA1_FUNDO_BRANCO">
TITULO</div>
<?}?>