Jump to content

help please


fullyloaded

Recommended Posts

hi
i was wondering if anyone can help me with this code i have here in this string of code to get it to work you need the image i want to replace the image with text can anyone help?[sub]$forumimg="<td width=66><a target=_blank href=".$site_url."forum/index.php?act=login&action=login&user=".$fuser."&pass=".$fpass."><img src=../images/btn_forum.gif width=66 height=21 border=0></a></td>";
[/sub]
Link to comment
https://forums.phpfreaks.com/topic/22205-help-please/
Share on other sites

hej
  two things you can do,
1) Add an alt attribute to the img tag, which will show up if the image can not be found or rendered.

    replace

img src=../images/btn_forum.gif width=66 height=21 border=0>
with
<img src=../images/btn_forum.gif  alt="missing image" width=66 height=21 border=0>

or straight replacement.

2)
  replace
<img src=../images/btn_forum.gif width=66 height=21 border=0>
  with
<h3>Link here</h3>

And could you use punctuation next time, it makes the question easier to understand and quicker to answer.
Link to comment
https://forums.phpfreaks.com/topic/22205-help-please/#findComment-99410
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.