Hello,
i’m building a site with php in dreamweaver but i’m with a problem
when i use the repeat region server behaviour i can’t use dynamic text anymore.
I mean let’s imagine that i have on the left a repeat region behaviour of news with links to the complete new. and on the right of the site i want to display the new… but it don’t appear.
i’m using data from a mysql db.
this is the code i’m using to repeat region:
<?php do { ?>
<span class="titulo_not"><?php echo $row_rs_news['titulo']; ?></span> <a href="../noticias.php"><img src="../img/lupa.gif" width="11" height="10" border="0"></a><br>
<span class="data"><?php echo $row_rs_news['data']; ?><br>
<br>
</span>
<?php } while ($row_rs_news = mysql_fetch_assoc($rs_news)); ?>
and this is for the dynamic field alone without repeat:
<?php echo $row_rs_news['texto']; ?></p>
Anyone can help me?