Change this:
PHP Code:
$cekilen_mesleki=mysql_query("
select threadid, title, postusername, postuserid, dateline, forumid
from thread WHERE
visible= '1' AND (forumid='5' OR forumid='7' OR forumid='6' OR forumid='8' OR forumid='20' OR forumid='10' OR forumid='11' OR forumid='12' OR forumid='13' OR forumid='14' OR forumid='15' OR forumid='30' OR forumid='31' OR forumid='23' OR forumid='29' OR forumid='24' OR forumid='22' )
order by dateline ASC LIMIT 1
");
to this
PHP Code:
$cekilen_mesleki=mysql_query("
SELECT threadid, title, postusername, postuserid, dateline, forumid
FROM thread
WHERE visible='1'
ORDER BY lastpost DESC
LIMIT 1
");
However, that code won't check for permissions, so you must include something like
AND (forumid='x' OR forumid='y' OR...) in the query, so you only get the last post on your desired forums.