below is the code i'm using to view records in my database. when i enter the info into the db i put the address of the image, what do i have to do to this code to make the image show rather then the address of it?
<!-- output the column headers -->
<FORM METHOD="POST" ACTION="<?php echo("addToBasket.php3"); ?>">
<TABLE border = 1> <TR>
<TD ALIGN="center"> <em>Product</TD>
<TD ALIGN="center"> <em>Description</TD>
<TD ALIGN="center"> <em>Price</TD>
<TD ALIGN="center"> <em>URL</TD>
<TD ALIGN="center"> <em>Image</TD>
<TD ALIGN="center"> <em>Qty ordered</TD>
</em></TR>
<?php
/ now work through the products file, creating a table with a
data entry field to contain the quantity ordered /
$dbcnx = myConnect();
$query = "SELECT PROD_ID, PROD_NAME, PROD_PRICE, PROD_URL, PROD_IMAGE FROM $table_products";
$result=mysql_query($query);
if (! $result) printf ("Error: %s<br>", mysql_error ());
for ($i = 0; $i < mysql_num_rows ($result); $i++) {
$row = mysql_fetch_row($result);
echo("<tr>");
for($j = 0 ; $j<mysql_num_fields($result); $j++) {
echo("<td>");
if($j==3) echo "<a href=\"".$row[$j]."\" target=\"_blank\">".$row[$j]."</a>";
else echo($row[$j]);
echo("</td>");
};
echo("<TD><INPUT TYPE=TEXT NAME=QUANTITY[");
echo($row[0]);
echo("] SIZE=3></tr>");
};
?>
</TABLE>
<INPUT TYPE=SUBMIT VALUE="Submit Form">
<INPUT TYPE=RESET VALUE="Reset Form">
</FORM>
<?php };