difference between mysql_connect and mysql_pconnect?


Mysql_connect:
 Opens a new connection to the database
  The database connection can be closed
  Opens the page every time the page is loaded.

Mysql_pconnect:
 Opens a persistent connection to the database.
The database connection can not be closed.
The page need not be opened every time the page is loaded.