<td colspan="1" valign="top"> <a target="_blank" href="http://www.facebook.com/profile.php?id=".<?=$Facebook?><img src="image/facebook_account.png" border="0" /> </td>
cant get the image to show up
| SitePoint Sponsor |
<td colspan="1" valign="top"> <a target="_blank" href="http://www.facebook.com/profile.php?id=".<?=$Facebook?><img src="image/facebook_account.png" border="0" /> </td>
cant get the image to show up
I spy with my little eye an unclosed HTML tag.Code:<td colspan="1" valign="top"> <a target="_blank" href="http://www.facebook.com/profile.php?id=".<?=$Facebook?>________________ <img src="image/facebook_account.png" border="0" /> </td>
EDIT: Exaggerated for effect.

This wrong as well?
Should be:PHP Code:id=".<?=$Facebook?>
Added in the closing > as wellPHP Code:id=<?=$Facebook?>">![]()
You added the closing >, and took away the opening " !
PS: I wouldn't personally use shorttags, but its still valid.PHP Code:id="<?=$Facebook?>">
Bookmarks