links not displaying in FireFox <SOLVED>
Posted: Wed Oct 17, 2007 8:16 am
On one of my sites I have a script that pulls info from a table and if there is a web address it displays it
first I build the complete address
then in the proper place I put
In IE everything works properly - the link is active, when you click on the link it opens in a new page etc. however, in FireFox the link shows up as a plain text line.
I've tried posting this problem on the Mozilla forums but so far no answers or ideas, does anyone here have a possible solution?
TIA
first I build the complete address
Code: Select all
$webfront='http://';
$finalwebaddress=$webfront.$webaddress;Code: Select all
echo "<tr>\n
<td align='right' bgcolor='#DEB887' width='50'><b>Web</b></td>
<td align='left'><a target='_blank' href='$finalwebaddress'</a>$webaddress</td>
</tr>";I've tried posting this problem on the Mozilla forums but so far no answers or ideas, does anyone here have a possible solution?
TIA