我对此事有问题...我一直在XAMPP中进行此操作,但没有任何问题..但是每当我将其上传到主机时,它总是显示此内容。


  致命错误:在第49行上的/home/u161146050/public_html/application/views/test1.php中的非对象上调用成员函数fetch_assoc()。


我不知道为什么它会出现在line 49中,但是在我在localhost中执行它时却没有出现。

<table class="table table-condensed table-hover">
    <tr>
        <td class="warning" id="bold">Book Id</td>
        <td class="danger" id="bold">Book Title</td>
        <td class="warning" id="bold">Author</td>
        <td class="danger" id="bold">Status</td>
        <td class="warning" id="bold">Borrower</td>
        <td class="danger" id="bold">options</td>
    </tr>
    <?php
    include('inc/config.php');
    $sql = "SELECT * FROM books";
    $result = $link->query($sql);
    while($row = $result->fetch_assoc()) {
    ?>
    <tr>
        <td class="warning"><?php echo $row['bookNumber']?></td>
        <td class="danger"><?php echo $row['title']?></td>
        <td class="warning"><?php echo $row['author']?></td>
        <td class="danger"><?php echo $row['status']?></td>
        <td class="warning"><?php echo $row['borrower']?></td>
        <td class="danger"><form  method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"><div class="btn-toolbar" role="toolbar" aria-label="...">
        <div class="btn-group" role="group" aria-label="...">
            <button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-bookmark" aria-hidden="true"></span></button></a>
            <button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-eye-open" aria-hidden="true"></span></button></a>
        </div>
        </div>
    </form>
</td>
</tr>
<?php    }
?>




任何帮助,将不胜感激。

最佳答案

$result=mysqli_query($con,$sql);
while($row=mysqli_fetch_assoc($result);{

09-27 01:36