What is the difference between mysql_connect() and mysql_pconnect() ?
Sep 18, 2009 Mysql
mysql_pconnect() makes a persistent connection to the database which means a SQL link that do not close when the execution of your script ends.But when you make a connection with mysql_connect then sql link will be automatically close after the execution of your script.
Leave a Reply