Blogger Information
Blog 250
fans 3
comment 0
visits 322917
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP中mysql连接数据库
梁凯达的博客
Original
674 people have browsed it

实例

<?php

// mysql -hlocalhost -uroot -p654321
// 报错
// 选择数据库
// 增删改查
// 退出


//php连接数据库之php武功秘籍 天龙八步

//1.连接数据库
//2.判断错误
//3.选择数据库
//4.选择字符集
//5.准备sql语句
//6.发送sql语句
//7.处理结果集
//8.关闭数据库
//
//1.连接数据库
//mysqli_connect('主机名','用户名','密码');
$link = mysqli_connect('localhost','root','123456');
//var_dump($link);
//2.判断错误
//mysqli_connect_errno(连接对象)  错误号
//mysqli_connect_error(连接对象)  错误信息
//echo mysqli_connect_errno($link);
//echo '<hr/>';
//echo mysqli_connect_error($link);
if(mysqli_connect_errno($link)>0){
 echo mysqli_connect_error($link);exit;
}

//3 选择数据库
//mysqli_select_db(连接对象,要选择的数据库)
 mysqli_select_db($link,'ss34');

//4.选择字符集
//mysqli_set_charset(连接对象,字符集)
mysqli_set_charset($link,'utf8');

//5.准备sql语句
//$sql="SELECT id,name,sex,age,city FROM info";
$sql = "INSERT INTO info(id,name,sex,age,city) VALUES(NULL,'佩奇','3','10','英国')";
//6.发送SQL语句
//mysqli_query(连接对象,sql语句)

$result = mysqli_query($link,$sql);
var_dump($result);

//7.处理结果集
//mysqli_num_rows(结果集对象) 函数是用来获取查看所得到的记录条数 只限制查询使用!!!!
//mysqli_affected_rows(连接对象)函数是使用前一次mysql的操作受影响行函数 update delete insert 使用

//echo mysqli_num_rows($result);
echo  mysqli_affected_rows($link);

//8.关闭数据库
//mysqli_close(连接对象)

mysqli_close($link);

运行实例 »

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

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