thanks it works well, however I have the problem now that when using distinct that the topic that has duplicates doesnt show up at all, the goal however should be to display it only once, but not display its duplicates.
what I have so far:
$result = mysql_query("select distinct rc_title from recentchanges WHERE rc_cur_id !='0' order by rc_timestamp desc limit 9")
rc_title is the row where it usually has duplicates.
what can I do?
thanks