e1seix
07-21-2007, 03:12 AM
i'm confused.
i have an table on my web page that calls a "link" from mysql database. while it works in Firefox, the text is appearing in IE but not as a link.
the code:
<table bgcolor="#ffffff" border="0" width="150">
<tr>
<td align="justify" bgcolor="#ffffff" width="150">
<?php
include('http://www.dogfightuk.com/links_left.php');
?>
</td>
</tr>
</table>
the code for "link_left.php":
echo "<table bgcolor='#999999' border='0' cellpadding='5' cellspacing='0' width='150'>";
echo "<tr><td align='center' bgcolor='#999999' width='150'><p class='title'>Navigation</p></td></tr>";
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td align='justify' bgcolor='#cccccc' width='150'><p class='link'";
echo $row['link'];
echo "</p></td></tr>";
}
echo "</table>";
?>
and the 'link' that's called upon:
<a href="/browse_fra.php?" target="_top">Fragrances</a>
HELP!
i have an table on my web page that calls a "link" from mysql database. while it works in Firefox, the text is appearing in IE but not as a link.
the code:
<table bgcolor="#ffffff" border="0" width="150">
<tr>
<td align="justify" bgcolor="#ffffff" width="150">
<?php
include('http://www.dogfightuk.com/links_left.php');
?>
</td>
</tr>
</table>
the code for "link_left.php":
echo "<table bgcolor='#999999' border='0' cellpadding='5' cellspacing='0' width='150'>";
echo "<tr><td align='center' bgcolor='#999999' width='150'><p class='title'>Navigation</p></td></tr>";
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td align='justify' bgcolor='#cccccc' width='150'><p class='link'";
echo $row['link'];
echo "</p></td></tr>";
}
echo "</table>";
?>
and the 'link' that's called upon:
<a href="/browse_fra.php?" target="_top">Fragrances</a>
HELP!