时间:2021-07-01 10:21:17 帮助过:33人阅读
使用数据库:
mysql_select_db(‘feest‘,$lin);
mysql_select_db() 函数设置活动的 MySQL 数据库。
feest:数据库名称,$lin : MySQL 的连接。
查询数据库中其中一个表里的数据:
$check = mysql_query("select * from yonghu where username=‘‘123");
yonghu : 是你要查询的表的名称 , username : 是你要查询的字段。
这句话的意思是 :查询 yonghu 表里面是否存在字段 username 为 123这条数据。
* 这个符号表示查询yonghu里面所有的数据,*这个位置代表的是关键字的意思。
举个例子:
$check = mysql_query("select username from yonghu );
这句的意思是:查询yonghu表里字段名为username的数据。
这个时候你想echo $check这个变量是echo不出来的,会echo出 Resource id # 这个,需要用mysql_fatch_array把查询结果遍历并取出数据放到数组或者是变量中才行。
$guanjian = mysql_fetch_array($check);
这样就会返回给你一个数组,这样就可以获取数组中的数据,比如:echo $guanjian[‘username‘];
就会echo出表里面字段为username 的值。
查询数据库里面符合查询条件的数目:
mysql_num_rows()
举个例子:
$ini = mysql_query("select * from yonghu where username = ‘123‘ ");
$hue = mysql_num_rows($ini);
这时echo $hue ,会出现你表中符合条件的行数,就是符合要求的数目。(登陆可以使用这个来写。)
PHP对于数据库的基本 操作
标签:mysq 数据库 存在 span 登陆 fat where 数据 phpstudy