Skip to main content
Participant
September 22, 2006
Question

display {Recordset Field} in design view php

  • September 22, 2006
  • 3 replies
  • 312 views
I cant see the " {Recordset Field}" but only the PHP icon why?
This topic is closed to new replies. Start a new post to keep the conversation going.

3 replies

Inspiring
September 22, 2006
Do you have other text entered with it? Or just
<?php echo rs ?>?


"Bjarne Nordbeck" <webforumsuser@macromedia.com> wrote in message
news:ef080g$o69$1@forums.macromedia.com...
>I cant see the " {Recordset Field}" but only the PHP icon why?


Participant
September 22, 2006
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>