Hello, Recently I faced a major problem on my site regarding multiple mysql connections. Due to tht my site getting slow day by day. The site is developed under LAMP (Linux Apache Mysql PHP) technology. It has been coded like a MVC framework but not a real MVC and also used a PEAR library for the database. So according to the develoment methodology, a new database connection is opened at the top and it's been closed at the end of file. Therefore same mysql resource id would have been used in queries in between the page. I have already closed the mysql connection at the end of each file but dont know why it's getting increased the number of connections though and thus all database queries taking long time to execute. mysql connection type for this site is non-persistent. Does anyone have ideas ? Thank you.