作者:mobiledu2502882543 | 来源:互联网 | 2017-05-13 02:18
Mysql数据库:1、PHP-获取MySQL数据库查询结果行数:一首先需定义一个数据库接口函数,可单独存为一个php页面二在另一php页面中,首先需使用include函数包含上
一
首先需定义一个数据库接口函数,可单独存为一个php页面
functiondb_connect() {$result = new mysqli('数据库地址', '账号', '密码', '库名');//连接数据库if (!$result) {
returnfalse;//连接失败
}
return$result;//返回数据库对象
}
?>
二
在另一php页面中,首先需使用include函数
包含上述php页面,也即需保证上述接口函数能被正确调用
functionoutput_rows($seller_id){$conn = db_connect();//连接数据库if (!$conn) {//无法连接数据库echo"can not connect mysql";
return'fail_mysql';
}
$result = $conn->query("SELECT * FROM t_order WHERE seller_id= '". $seller_id."' ");//查询数据echo$result->num_rows; //输出行数
}
?>
通过调用上述定义的函数即可显示sql查询结果的行数,上述函数通过$result = $conn->query("SELECT * FROM t_order WHERE seller_id= '". $seller_id."' ");
进行数据库的查询,查询t_seller
表中seller_id
等于$seller_id
的所有行,并将结果集赋给$result
,再通过使用$result->num_rows
可取得查询结果的行数,用echo
进行输出显示
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('
').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了1、PHP-获取MySQL数据库查询结果行数,包括了Mysql数据库方面的内容,希望对PHP教程有兴趣的朋友有所帮助。