I've created a simple array (I think that is what it is called) in Dreamweaver. I know how to display images from the db with a static page but I can't seem to figure out how to do it when the pages are dynamic (i.e. display one record at at time). The below script puts the image name rather than the image itself. (The field is called Pictures) I actually want the picture itself.
<p>There are <?php echo $totalRows_Recordset1 ?> total records in this database. </p>
<p><?php echo $row_Recordset1['last']; ?></p>
<p><?php echo $row_Recordset1['Pictures']; ?></p>
Thank you..