Ok, I am helping wind up a site that is launching in 4 days. We just found out that our LINKS that are working fine in Internet Explorer won't work in Firefox or Safari...
So, instead of asking the client to accept 1 out of 3, I'd like to fix it.
Please Help.
<td rowspan="3" valign="top" bgcolor="#ffcccc" width="114"><b>Shop by category:</b>
<p><font size="-1">
<?php
$Redirect = 'CategoryResults.php?Category=';
while ($row = mysql_fetch_assoc($AppRS))
{
$NewCat = $row['Type'];
echo "<a href='$Redirect$NewCat'</a>".$NewCat."<br>";
}
?>
</td>