致命错误:调用未定义的函数 mysqli_result() [英] Fatal error: Call to undefined function mysqli_result()

查看:33
本文介绍了致命错误:调用未定义的函数 mysqli_result()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试将旧的 sql 切换到 sqli 时,有人可以告诉我为什么这不起作用:

Can someone please tell me why this doesnt work, when I tried to switch my old sql to sqli:

$query = "SELECT * FROM `product_category`";
$result = mysql_query($query, $connect) or die("could not perform query: " . mysql_error());
$num_rows = mysql_num_rows($result);

for ($i=0; $i < $num_rows; $i++)
{
    $ID = mysql_result($result,$i,"ID");
    $name = mysql_result($result,$i,"name");
    $description = mysql_result($result,$i,"description");

到:

$query = ("SELECT * FROM `product_category`");
$result = mysqli_query($connect, $query) or die("could not perform query");
$num_rows = mysqli_num_rows($result);

for ($i=0; $i < $num_rows; $i++)
{
    $ID = mysqli_result($result, "ID");
    $name = mysqli_result($result,$i,"name");
    $description = mysqli_result($result,$i,"description");`

它一直给我一个错误:致命错误:调用未定义的函数 mysqli_result()"

it keeps giving me an error of: "Fatal error: Call to undefined function mysqli_result()"

推荐答案

不要使用这种代码.这是非常低效的.使用 mysqli_fetch_assoc() 代替:

Don't use this kind of code. It's highly inefficient. Use mysqli_fetch_assoc() instead:

while($row = mysqli_fetch_assoc($result)) {
   $id = $row['ID'];
   $name = $row['name']; 
   etc..
}

一个 SINGLE 数据库操作,而不是您尝试执行的 3+ 个操作.

One SINGLE database operation, rather than the 3+ you're trying to do.

这篇关于致命错误:调用未定义的函数 mysqli_result()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆