I'm pulling the latest threads from the database to link to them from another page. I just want to be sure to only pull "visible" ie not moderated and deleted threads. Is the 'visible' field the right one to use or is there something I should do with the 'hiddencount' and 'deletedcount' fields?
Code:
select `title` , `threadid` from `thread` where `visible`=1 order by `threadid` desc limit 5