Topic: Staying XHTML Valid?
hi all. i'm trying to make my module xhtml compliant. the following code works fine but fails the w3c test. any tips on how to fix it? tia.
$category_url = 'linksviewc.php?category=';
while ($row = $db->fetch_assoc($result)) {
echo "- <b><a href=" . $category_url.$row['category'] . "> ". $row['category'] ."</a></b>"." -";
}