发布网友 发布时间:2022-04-10 10:11
共3个回答
热心网友 时间:2022-04-10 11:40
例
先将数据库用户表读出来 读到一个二维数组中
<?php//得到结果
array(4) {
["id"]=>
string(1) "4"
["name"]=>
string(6) "赵五"
["sex"]=>
string(3) "男"
["age"]=>
string(2) "18"
}
然后使用search()方法判断 如果存在name字段中就会输出当前name的数据
热心网友 时间:2022-04-10 12:58
查表,看有没有记录。
if(Mysql_fetch_rows(Mysql_query("select * from 表名 where 字段='张三'"))){追问可是那个字段并不只是张三两个字啊,而是一串用逗号隔开的名字
追答
那就用通配符。
if(Mysql_fetch_rows(Mysql_query("select * from 表名 where 字段 like '%张三%'"))){
热心网友 时间:2022-04-10 14:33
数据库设为主键。