Blogger Information
Blog 38
fans 0
comment 2
visits 24176
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库的连接和基本查询—4月23日
→忆指凡尘&的博客
Original
503 people have browsed it

大家好:

       下面是数据库的连接和基本查询操作,如有错误望大家指出

实例

<?php
//创建连接参数
//创建连接参数: 因为连接参数不会经常变化,所以推荐使用常量
define ('DB_HOST','localhost');
define ('DB_USER','root');
define ('DB_PASS','root');
define ('DB_NAME','PHP');
define ('DB_CHAR','utf8');

//调用连接函数
$db = mysqli_connect(DB_HOST,DB_USER,DB_PASS);

//测试连接是否成功
if (mysqli_connect_errno($db)) {
	exit('连接失败'.mysqli_connect_error());
} else{
	echo '连接成功';
}
echo '<hr>';

// 查询步骤:
// 1.连接数据库
// 2.执行查询
// 3.关闭数据库连接
 
// 执行查询
if($res = mysqli_query($db, "SELECT name,salary FROM php.staff")) {
    while($row = mysqli_fetch_assoc($res)) {
    	echo '<pre>';
        var_export($row);
    }
} else {
    exit('查询失败'.mysqli_errno($db).':'.mysqli_error($db));
}
echo '<hr>';

//关闭数据库
mysqli_close($db);

运行实例 »

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

                                                                                  课程总结

1.创建连接参数: 因为连接参数不会经常变化,所以推荐使用常量

2.调用连接函数 — $db = mysqli_connect(DB_HOST,DB_USER,DB_PASS);

3.查询步骤 — mysqli_query()

     (1)连接数据库

     (2)执行查询

     (3)关闭数据库连接 — mysqli_close();


Correction status:Uncorrected

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