Image from a URL database record
Hi
I am building an online catalog usual stuff product name, link, price, image etc
the product link and image are on another server url's are datatbade cells
no problem with the product link using <td><p><a href="<?php echo $row_Recordset1['productUrl']; ?>" target="_new"> click for more</a></p></td>
But I am having problem with the image have tried
<td><img src="<a href="<?php echo $row_Recordset1['imageUrl']; ?>" ></td>
<?php echo $row_Recordset1['description']; ?></td>
but just get an image placeholder box even when uploaded to server and previewed in browser
the whole details are
<table border="1">
<tr>
<td>name</td>
<td>productUrl</td>
<td>imageUrl</td>
<td>description</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['name']; ?></td>
<td><p><a href="<?php echo $row_Recordset1['productUrl']; ?>" target="_new"> click for more</a></p></td>
<td><img src="<a href="<?php echo $row_Recordset1['imageUrl']; ?>" ></td>
<?php echo $row_Recordset1['description']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
Thank you
