I have this code part of a bigger table with different field names being echoed.
echo "<tr><td>";
echo $row['car'];
echo "</td><td>";
echo $row['caravan'];
echo "</td><td>";
I need 2 pieces of help please.
I want to add an image of that car, the image is in a folder on the server and the image is named the same as the details in the details in the field that are being echoed. eg in the car field and being echoed is BMW X5 and the image will be images/BMW X5.jpg
I need to add the image in the same row with a break <br /> to ensure there is a space inbetween the field details and the image
Hope somebody can help
Thanks in advance