simpliest way is if the page is php
PHP Code:
//connect to database
mysql_connect("localhost", "YOURUSERNAME", "YOURPASS");
mysql_select_db("YOURFORUMSDATABASE");
//select thread information
$popular=mysql_fetch_array(mysql_query("SELECT * FROM thread ORDER by replycount DESC LIMIT 1"));
mysql_close();
$popular="Most popular thread is <a href=\"http://forums.site.com/showthread.php?s=$session[sessionhash]&threadid=$popular[threadid]\">$popular[title]</a>";
then just place $popular somewhere on your page and it will say like
Most popular thread is Some Title Here and the title will be a link to the thread.