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 |
how to run PHP in command line?
8 Answers InfoShore, Ramp Green, Xtreeme,
hello experts good morning to everyone ! at present am now learning LAMP course sir( linux, apache,mysql and php) after finishing this course can i create my own website without investment is it possible ? please can any one tell sir and also tell me how can i upload my project after finishing the project in internet ? please tell the ways sir please send ur valuable suggestions to kiranpulsar2007@gmail.com
I have done 12th and then i completed 2 years course of web designing and development from xplora design skool, kota(rajasthan). I am a fresher. How much can i earn in this field ?
How to create a mysql connection in php?
How easy is php?
What Is a Persistent Cookie?
What is the method to register a variable into a session?
What is the sign to start variables in PHP?
Which php framework is best for beginners?
What is the difference between the functions unlink and unset?
hi! i am tushar. i am trying to insert digital signature in a pdf file using PHP. i create a digital signature jpg image using imagecreatefromjpeg() function, but whenever i trying to insert it into my pdf file it shown this error. "FPDF error: Not a JPEG file: signature.jpg". could some one help me? how can i insert a digital signature in a pdf file using PHP?
Tell me how to find the position of the first occurrence of a substring in a string?