I am working in Dreamweaver using PHP. Getting text into tables from mysql database is working fine, now I want to load pictures into my table as well. Can someone outline the process? I am guessing that I need the image filename (or path to my image folder) in my SQL database, but how do I get the image downloaded into my table with it's associated text?

As an example of what I what to do: small thumbnail size pic in column one, then next column might have picture filename (in text), then, the third column might have a price or some other associated pic information.

    here is the answer to my own question....

    In the DW Properties/Src field________../images/<?php echo $row_deals['tourpic']; ?>

    It is so easy.....

    Put your pic filenames in your database in their own in a column (mine is called ‘tourpic’).
    Put a small image in the repeating row column.
    Setup you recordset.... Must include tourpic field.
    select the placeholder image
    Bind tourpic field to placeholder image on repeating row.

      Write a Reply...