I have a table pulling info from a db, all of that is great and works exactly as it should.
However, I have some graphics files that I would like to link to.
I have the following code that produces the table:
foreach ($stmt as $row) {
echo <<<tbldat
<tr>
<td>{$row['aettir']}</td>
<td>{$row['name']}</td>
<td>{$row['sound']}</td>
<td>{$row['keywords']}</td>
<td>{$row['color']}</td>
<td>{$row['meaning']}</td>
</tr>
tbldat;
}
So where it shows the name, I would like to link to a graphic with the same name, for instance I would like something like {$row['name']}.png . I just cannot seem to get it right for some reason.
Advice anyone?
Thanks for reading!
Jim