Blogger Information
Blog 46
fans 1
comment 1
visits 30425
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库 连接与查询 的基本步骤-2018年4月23日
笨鸟先飞
Original
507 people have browsed it

数据库连接的基本步骤:

实例

<?php
/*
 * 创建数据库的连接
 * */
//1.创建连接参数
//header("content-Type: text/html; charset=Utf-8");
define('DB_HOST','127.0.0.1');//服务器
define('DB_USER','root');//用户名
define('DB_PASS','root');//密码
define('DB_NAME','php');//当前默认数据库
define('DB_CHAR','utf8');//字符编码
//2.调用连接函数返回连接对象

$db = mysqli_connect(DB_HOST,DB_USER,DB_PASS);

//3.判断是否连接成功

if(mysqli_connect_errno($db)){
    exit('连接失败'.mysqli_connect_error($db));//exit是退出,后面的代码不会再执行
}else{
//    echo '<h2>连接成功</h2>';
}
//4.选择默认数据库
mysqli_select_db($db,DB_NAME);

//5.设置客户端默认字符集编码
mysqli_set_charset($db,DB_CHAR);

运行实例 »

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



数据库查询的基本步骤:

实例

<?php
/*
 * mysqli_query($db,$sql);
 * 1.select查询,读操作,返回的就是一个结果集
 * 2.insert、update、delete是个写操作,返回的是受影响的记录数量
 * 查询:广义:查询、删除,更改,添加(CURD增删改查)
 *      狭义:查询
 * */


//1.连接数据库
require 'mysqli_connect.php';

//2.执行查询
$sql = "SELECT * FROM phone";

//3.mysqli_query()执行针对某个函数库的查询
if($res = mysqli_query($db,$sql)){
    while($row=mysqli_fetch_array($res,MYSQLI_ASSOC)){
        var_export($row);print '<hr>';
    }
}else{
    exit('查询失败'.mysqli_error($db).':'.mysqli_connect_error($db));
}

//3.释放结果集(仅针对查询操作即读操作)

mysqli_free_result($res);

//4.关闭数据库的连接

mysqli_close($db);

运行实例 »

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


Correction status:qualified

Teacher's comments:
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