使用“mysql_fetch_row”从数据库中检索结果并使用PHP和mysqli插入到数组中?

前端之家收集整理的这篇文章主要介绍了使用“mysql_fetch_row”从数据库中检索结果并使用PHP和mysqli插入到数组中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我需要从几行中检索数据,然后将结果插入到枚举数组中,然后我可以使用“for”循环来回显它…

我有这个(我已经连接到数据库):

$genres_sql = 'SELECT genreID FROM genres WHERE imdbID = ?';
if ($stmt->prepare($genres_sql)) {
    // bind the query parameters
    $stmt->bind_param('i',$movieid);
    // bind the results to variables
    $stmt->bind_result($genre);
    // execute the query
    $stmt->execute();
    $stmt->fetch();
}

在这里,我将第一个结果(行)放入变量中.但是我需要将它插入到枚举数组中,以便我可以使用以下方法回显每个结果:

if (!empty($genre)) {
for ($i = 0; $i + 1 < count($genre); $i++)
{
    echo $genre[$i].','; 
}
echo $genre[$i];
}

这将回应:$genre [0],$genre [1],$genre [2]等等,直到最后一个.

我知道MysqL_fetch_row可以完成这项工作,但我是编程的新手,所以我需要一个非常详细的解释.
谢谢!!

最佳答案
您可以使用MysqLi_Statement :: fetch方法循环:

$stmt->bind_result($genre);
$stmt->execute();
$genres = array();
while ($stmt->fetch()) {
    $genres[] = $genre;
}

基本上,fetch提供了一个迭代器,while可以用来迭代每个结果. bind_result中的变量(在本例中为$genre)将在每次迭代时重新分配.

原文链接:https://www.f2er.com/mysql/432907.html

猜你在找的MySQL相关文章