I want to add an image to my php script:
<?php
$sql = "select * from Prod_listing";
$result = mysql_query ($sql);while ($row = mysql_fetch_array($result))
{
$field1= $row["Product_Name"];
$field2= $row["Product_Id"];
$field3= $row["Product_Description"];
$field4= $row["Product_picurl"];echo "<h1> <strong> $field1 <br> </strong> </h1>"; // Header Tag, bold.tag
echo "$field2<br>";
echo "$field3<br>";
echo "$field4 <p>----------------<p>";
//echo
}
?>
The picture link is stored in $field4
thanks in advance