by server_guy » Sun Oct 26, 2008 8:20 am
It takes more than one connection to your database to get the data from your forum. I run a blog and it generates 29 requests to my database to generate the front page. 29 requests every time someone goes to my front page (well, 29 requests the first time someone goes, then it gets cached and after that there are no connections till someone visits an un-cached page) every time there is a query in your code that counts as one connection - I'm sure there is more than one query to get all the data from your database (eg, one query to get the topic names, one query to get the number corresponding to that topic, and one query to get the data inside that topic, etc