I want to pull the image name from the database and insert it to the folder directory path using php.
I am wondering is this possible and if so how? Ive attempted it a few different ways but i can't figure it out?
while($row = mysql_fetch_array($result))
{
echo "<tr>";
This Line ---> echo "<td> <img src='/images/ <?php '. $row['images_name'] .''>" "</td>"; <---
echo "<td>" . $row['product_name'] . "</td>";
echo "<td>" . $row['price']. "</td>";
echo "<td>" . $row['details'] . "</td>";
echo "</tr>";
}