Hi,
First off I am still in the very early stages of php / mysql (like a couple of days).
I have added a VARCHAR field to a table in phpmyadmin to hold image links (and I can see the image thumbnail here). Then using Dreamweaver I have drawn a table & created a Recordset, with bindings to display the whole table for a record, code as follows:
table width="800" border="0">
<tr>
<th width="131" scope="row">address</th>
<td width="659"><?php echo $row_Recordset1['address']; ?></td>
</tr>
<tr>
<th scope="row">price</th>
<td><?php echo $row_Recordset1['price_per_mth']; ?></td>
</tr>
<tr>
<th scope="row">pic</th>
<td><?php echo $row_Recordset1['pic1']; ?></td>
</tr>
Is there anything relatively easy that I can change here so that the actual image ('pic1') displays, as opposed to just the path, preferably without delving deep into the depths pf php? Please be gentle with me!
Thanks a lot, much appreciated