-
php link not working in IE
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!
-
-
in fact i've just noticed a problem, the '>' after link. it still doesn't work though
-
-
Can you link us to the page?
PHP isn't the problem because it outputs the same thing no matter what browser is being used.
It is something to do with the text that is output, such as, yes, a missing '>', etc.
Daniel -
Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks