Then you should have asked in the other thread.
PHP Code:
$threads=$DB_site->query("SELECT threadid,thread.title AS title,thread.lastpost,thread.replycount,postusername,thread.forumid,forum.title AS forumtitle
FROM thread
LEFT JOIN forumpermission USING(forumid)
LEFT JOIN forum ON forum.forumid = thread.forumid
WHERE forumpermission.forumid IS NULL
ORDER BY lastpost DESC LIMIT ".$showthreadnumber);