Hi, thanks for looking.
I'm using a PHP file as a Server Side Include inside a table on another PHP page. The include file dynamically spits out a series of links, drawn from a MySQL Database, using echo()
I have several CSS styles defined for my site, and have tried applying them to the table in which the SSI is located. But no matter what, I can't seem to change the color of the links, both unvisited and visited.
Does anyone have any suggestions of how to get them to turn out white? (they're on a blue background).
Here's the code from the include file, minus the mysql_connect and <?PHP...?> tags:
$sql = @("SELECT FAQCategory FROM CJOCFAQ ORDER BY FAQCategory");
if (!$sql) {
echo "Error Loading Database";
}
while ($faqloaded = mysql_fetch_array($sql)) {
$currentcategory = $faqloaded["FAQCategory"];
echo "<br><font color='white'><a href='faq.php'>$currentcategory</a></font>";
}