PHP MySQL Getting Started tutorial the connection database

Source: Internet
Author: User

Common connection function mysql_connect ()

Mysql_connect (Servername,username,password);

Long connection function Mysql_pconnect ()

Mysql_pconnect (Servername,username,password);

The code is as follows Copy Code

<?php
$con = mysql_connect ("localhost", "Peter", "abc123");
if (! $con)
{
Die (' Could not connect: '. Mysql_error ());
}
Some code
?>


Said is Mysql_pconnect, how can bypass MySQL settings. The two most important parameters that affect mysql_pconnect are wait_timeout and interactive_timeout.

  code is as follows copy code

<?php
    $conn = mysql_pconnect ("localhost", "root", "123456") or Die ("Can not connect to MySQL");
    echo "MySQL thread number:". MYSQL_THREAD_ID ($conn). "<br/>";
    echo "Apache process number". Getmypid ();
?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.