I have this line of code to display an image. The image does not display, and can't figure out why. I know this does not look like a PHP problem, but I'm quite sure the problem is with the concatenation of the string parts...
This is the line of code:
echo "<td align = 'right' width = '15%'><a href = 'editlink.php?comp_id=" . $row['comp_id'] . "><img src = 'edit-icon.gif' alt = '" . $mylinks['readmore'] . "'></a></td></tr>";
The image for the time being is on the same directory as the file that is calling it.
Can anyone help me out with this?