what is "mysql_pconnect", i know mysql_connect but what it
is pconnect is their?
Answers were Sorted based on User's Feedback
Answer / raman
mysql_pconnect means, persistent connection with mysql. It
doesn't break the connection even after closing the page.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / deepaa.n
mysql_pconnect() opens a persistent mysql connection.
It returns the connection on success or failure. It mostly same as mysql_connect(), but it has 2 major differnts. that are
mysql_pconnect() will try to find a connection that's already open, with the same host, username and password. If one is found, this will be returned instead of opening a new connection
It will not be closed when the execution of the script ends . It will stay open for future use.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is it possible to submit a form with a dedicated button?
How to delete a file from the system?
What is the diffrence between GET,POST and REQUEST Method.
How do I add to the beginning of an array and find the number of elements in it?
1 Answers Rushmore Consultancy,
What is Mcrypt used for?
How do I start a php session?
What's the best method for sanitizing user input with php?
What is reference variable php?
Explain the importance of the function htmlentities.
What is the difference between using copy() and move() function in PHP file uploading?
How we load all classes that placed in different directory in one php file , means how to do auto load classes.
why header() gives the error like header already sent in php please explain in brief