Blogger Information
Blog 42
fans 3
comment 2
visits 93388
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP中的MySQL函数
Whitney的博客
Original
3182 people have browsed it

本篇主要介绍采用PHP语言如何连接MySQL数据库。

首先需要检测服务mysql是否开启成功。(查看phpinfo()函数)

使用PHP操作数据库的步骤

一、连接数据库服务器

mysql_connect('主机地址:端口号','用户名','密码')

二、选择数据库

mysql_select_db('数据库名')

三、设置编码格式

mysql_set_charset('utf-8')

四、数据库操作(curd)

mysql_query('SQL语句')

五、处理结果集

1.处理SQL查询语句时对返回结果使用函数

mysql_num_rows() 返回结果集中包含的记录数目

mysql_num_fields() 返回结果集中字段的数目

mysql_field_name() 返回结果集中字段的内容

mysql_fetch_row() 从结果集中抽取一行作为索引数组返回,如果没有更多的行,则返回false

mysql_fetch_assoc() 从结果集中抽取一行作为关联数组返回,如果没有更多的行,则返回false

mysql_fetch_array() 从结果集中抽取一行作为索引数组与关联数组,两者兼有返回

2.处理插入或者更新SQL语句时使用函数

mysql_insert_id() 显示最后插入记录的id

mysql_affected_rows() 显示受影响的记录的条数

六、释放结果集

mysql_free_result()

七、关闭数据库服务器

mysql_close()



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