Hi
Yes You are right. My code in connection file is
$database = mysql_connect('localhost', 'username', 'password');
// DATABASE SELECTION
mysql_select_db('DBNAME',$database) or die ('database access error'.mysql_error());
Error was
Warning: mysql_connect() [function.mysql-connect]: Too many connections in (path of connection file)
Now i used mysql_pconnect() at the place of mysql_connect() and restart server so i have not got any error.
it is working fine for now. Is it good for future?
Thanks
Rhythm