第二个查询不起作用,我试图从另一个表中回显第二个查询中的所有信息,但确实出现了下一条消息:
Undefined property: stdClass::$titulo(以及“ resultado2”的其余部分)
我试图像第一个查询一样进行一段时间(while($ nfila = $ resultado2-> fetch_object())),但确实出现了另一条错误消息:
Trying to get property of non-object

<?php
    $usuario = $_SESSION['usuario_valido'];
    $consulta = "SELECT * FROM `lista-usuarios` WHERE categoria='favoritos' AND  nombreusuario='$usuario' ORDER BY pelicula ASC";
    $resultado = $conexion->query($consulta);

    if ($resultado)
        {
        $cont3 = 1; //Para el id de la peli
        $i = 0; //Para un class unico
        while ($nfila = $resultado->fetch_object())
            {
            $pelicula = "peli" . $cont3; //Para hacer un id unico de cada pelicula
            $i++;
            echo "<form role='form' id='$pelicula'><table class='table table-striped'>";
            echo "
                            <tr>
                                <td>" . $cont3 . "</td>
                                <td class='celda2'>" . $nfila->pelicula . "</td>
                                <td class='celda2'>" . $nfila->anio . "</td>
                                <td class='celda2'><button type='button' class='infoCompleta btn btn-default' data-toggle='modal'data-target='.modal" . $i . "'><span class='glyphicon glyphicon-hand-right'></span> Info Completa</button></td><td class='celda2'><button type='button' class='eliminarFav1 btn btn-danger'><span class='glyphicon glyphicon-remove-sign'>                                                     </span> Favoritos</button></td>
                            </tr>";
            $consulta2 = "SELECT * FROM `peliculas` WHERE titulo='$nfila->pelicula'";
            $resultado2 = $conexion->query($consulta2);
            if ($resultado2)
                {
                echo "
                            <div class='modal fade bs-example-modal-lg modal" . $i . "' tabindex='-1' role='dialog' aria-labelledby='myLargeModalLabel'>
                            <div class='modal-dialog modal-lg'>
                            <div class='modal-content'>
                            <div class='modal-header'>
                            <button tyle='button' class='close' data-dismiss='modal' aria-hidden='true'>&times;</button>
                            <h4 class='modal-tigle'>" . $nfila->titulo . "</h4>
                            </div>
                            <div class='modal-body'>
                            <center><a target='_blank' href='imagenes/" . $nfila->imagen . "'>
                            <img class='img-top-peliculas' src='imagenes/" . $nfila->imagen . "' class='img-rounded '></a>
                            </center><br />
                            <p><strong>Titulo Original: </strong>" . $nfila->tituloOriginal . "</p>
                            <p><strong>Año: </strong>" . $nfila->anio . "</p>
                            <p><strong>Duracion: </strong>" . $nfila->duracion . " min.</p>
                            <p><strong>País: </strong>" . $nfila->pais . "</p>
                            <p><strong>Director: </strong>" . $nfila->director . "</p>
                            <p><strong>Reparto: </strong>" . $nfila->reparto . "</p>
                            <p><strong>Género: </strong>" . $nfila->genero . "</p>
                            <p><strong>Sinopsis: </strong>" . $nfila->sinopsis . "</p>
                            </div>
                            <div class='modal-footer'>
                            <button type='button' class='btn btn-default' data-dismiss='modal'>Cerrar</button>
                            </div>
                            </div>
                            </div>
                            </div>";
                }

            echo "<input name='usuario' type='hidden' value='$usuario'>";
            echo "<input name='titulo' type='hidden' value='$nfila->pelicula'>";
            echo "<input name='anio' type='hidden' value='$nfila->anio'>";
            echo "<input name='categoria' type='hidden' value='categoria' class='cat'>";
            echo "</table></form>";
            $cont3++;
            }

        echo "<span class='datos'></span>";
        }
      else
        {
        echo "Hubo un problema al cargar las peliculas";
        }

最佳答案

您不是从$resultado2 = $conexion->query($consulta2);获取结果。您仍在使用较早的$nfila中的最后一个$nfila = $resultado->fetch_object()。我将假设您想要以下内容:

   if ($resultado2) {
        $nfila2 = $resultado2->fetch_object();


然后在内部条件下使用$nfila2,在此条件下echo除去其他部分。

  echo "
        ... stuff ....

      <h4 class='modal-tigle'>" . $nfila2->titulo . "</h4>

       ... more stuff....";


另外,我不建议在同一连接上嵌套查询。我会在原始集合上全部提取:

 $results =  $resultado->fetch_all();
 foreach($results as $nfila) {
       //Do stufff


但是,fetch_all仅在mysqli中返回数组,而不返回对象,因此,只需确保将$nfila->pelicula引用转换为$nfila['pelicula']

10-05 19:43