PaganJim Posted November 13, 2021 Share Posted November 13, 2021 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 Quote Link to comment https://forums.phpfreaks.com/topic/314221-include-link-in-heredoc/ Share on other sites More sharing options...
ginerjm Posted November 13, 2021 Share Posted November 13, 2021 Show us how you are doing that. And where is the png file located? Are you providing the loc/path Quote Link to comment https://forums.phpfreaks.com/topic/314221-include-link-in-heredoc/#findComment-1592017 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.