What is difference among mysql_connect and mysql_pconnect?
Mysql_connect() opens a new connection to the database while mysql_pconnect() opens persistent connection to the database. This means that every time page is loaded mysql_pconnect() doesn't open the database.
Mysql_close() can't be used to close the stable connection. while it can be used to close mysql_connect().