OK, even looking at the referenced way of doing things, I need some help with some code please.
while ( $row = mysql_fetch_array($cursor) )
{
echo("<TR><TD>" . $row["Make"] . "</TD><TD>" . $row["Model"] . "</TD><TD>" . $row["CC"] . "</TD>
<TD>" . $row["Colour"] . "</TD><TD>" . $row["Year"] . "</TD>
<TD>" . $row["_Desc"] . "</TD><TD>" . $row["pic"] . "</TD></TR>");
}
This works fine. Obviously the last bit displays the actual path to the images at the moment, just to check that it is pulling it through OK. I now need to replace that with:
echo "<img src=\"".$row['pic']."\"><br>";
But for some reason all my attempts have met with parse errors. The line on its own works fine, I just can`t tailor it to fit in to relaced the path with the actual picture.