Blogger Information
Blog 14
fans 0
comment 0
visits 8640
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mysqli_connect,mysqli_query数据库连接查询2018.04.24
弗洛加特的博客
Original
542 people have browsed it

实例

/**
 * 创建数据库连接
 * 1.创建连接参数
 * 2.调用连接函数返回连接对象
 * 3.判断是否连接成功
 * 4.选择默认的数据库
 * 5.设置客户端默认字符编码集
 */

require 'mysqli_config.php';
$db = mysqli_connect(DB_HOST,DB_USER,DB_PASS);
if(mysqli_connect_errno($db)){
    exit('连接失败:'.mysqli_connect_error($db));
}
echo '<h1>连接成功</h1>';

mysqli_select_db($db,'DB_NAME');
mysqli_set_charset($db,'DB_CHAR');

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post