php-php连接数据库
Posted 加号与剑豪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php-php连接数据库相关的知识,希望对你有一定的参考价值。
php操作数据库
通过php连接上mysql数据库
$conn=mysql_connect("","","");
选择数据库
mysql_select_db("");
设置客户端和连接字符集
mysql_query("set names utf8");
从表单收的数据
$name="yjh";
$pass="123";
通过php进行insert操作
$sql="insert into t2(name,pass) values(‘{$name},{$pass}‘)";
执行这条sql语句
mysql_query($sql);
释放连接资源
mysql_close($conn);
从结果集中取数据
mysql_fetch_assoc 关联数组
mysql_fetch_row 索引数组
mysql_fetch_array 混合数组
mysql_fetch_object 对象
mysql_insert_id //取得上一步insert操作产生的id
mysql_num_fields//得到insert,update,delete操作影响的行数
mysql_num_rows //得到select操作影响到的行数
以上是关于php-php连接数据库的主要内容,如果未能解决你的问题,请参考以下文章