Home > php教程 > php手册 > body text

PHP MySQL入门教程之连接数据库

WBOY
Release: 2016-05-25 16:37:37
Original
808 people have browsed it

在php中连接数据有mysql_connect() 函数或mysql_pconnect()函数来完成,下面我给大家php入门者简单介绍介绍.

常用连接函数mysql_connect()

mysql_connect(servername,username,password);

长连接函数mysql_pconnect()

mysql_pconnect(servername,username,password);

PHP实例代码如下:

<?php 
$con = mysql_connect("localhost","peter","abc123"); 
if (!$con) 
{ 
    die(&#39;Could not connect: &#39; . mysql_error()); 
} 
// some code
Copy after login

说的是mysql_pconnect,怎么能绕开MySQL的设置,影响mysql_pconnect最重要的两个参数就是wait_timeout和interactive_timeout,代码如下:

<?php 
$conn = mysql_pconnect("localhost","root","123456") or die("Can not connect to MySQL"); 
echo "MySQL线程号:". MySQL_thread_id($conn). "<br />"; 
echo "Apache进程号". getmypid();
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!