ok...
so far so good.... But... what if there is also a field on the content table called "cat" and I want to display that value? ( which is my actual problem ).
Ive changed the query a bit, instead of c.* Ive put c.cat and also please explain why You do: c.article_cat instead of a.article_cat, like Ive done below!!
<?php
$sql = "SELECT c.cat, a.cat FROM content c, article a WHERE a.article_cat = '" . $cat . " AND c.content_cat = '" . $cat . "''";
$query = mysql_query($sql);
while ($row = mysql_fetch_array($query))
{
echo($row[??????] . "<br />");
}
?>
Once again... THX!!