You have two things in here that are echo statements.
I would expect for the first block to show, but I would not
really expect
for your statements to show inside your If statement.
Is this entire block not showing? It should show all HTML
elements after
the ?> ending bracket for your PHP. It should then show
all echo statements
that are not nested (inside an if/do/etc statement).
AFAIK anyway,
Jon
"Bjarne Nordbeck" <webforumsuser@macromedia.com> wrote
in message
news:ef1gve$fot$1@forums.macromedia.com...
> Her is an example:
> <?php do { ?>
> <h2><?php echo $row_RsContent['Title'];
?></h2>
> <p>
> <?php if ($totalRows_RsImage > 0) { // Show if
recordset not empty ?>
> <img src="<?php echo $row_RsImage['imgName'];
?>" width="130"
> height="130" />
> <?php } // Show if recordset not empty ?>
>
> <?php echo nl2br($row_RsContent['Article']);
?></p>
>