action.php无法从数据库表中获取数据

所以我必须展示出从我的数据库中获取的表中的行。 我有一个JQuery来获取代码,但它显示我的错误

解析错误:语法错误,意外';' 在第49行的C: xampp htdocs hopeplace madmin action.php中

<?php 
//action.php
if(isset($_POST["action"]))
{

include('../connect.php');

if($_POST["action"] == 'fetch')
{
    $output='';
    $query ="SELECT * FROM user_details WHERE user_type ='user' ORDER BY user_name ASC";
    $statement = $Conndb-> prepare($query);
    $statement->execute()
    $result = $statement->fetchAll();//line 14
    $output .= '

        <table class="table table-hover">
            <tr>    
                <td>Full Name</td>
                <td>Email</td>
                <td>Status</td>
                <td>Action</td>
            </tr>

            ';
    foreach($result as $row){
        $status ='';
        if($row["user_status"] == 'Active'){

            $status = '<span class="label label-success">Active</span>';
        }
        else{

            $status = '<span class="label label-danger">Inactive</span>';
        }

        $output .= '
        <tr>
            <td>'.$row["user_name"].'</td>
            <td>'.$row["user_email"].'</td>
            <td>'.$status.'</td>
            <td><button type="button" name ="action" class="btn btn-info btn-xs action" data-user_id="'.$row["user_id"].'" data-user_status="'.$row["user_status"].'">Action</button></td>
        </tr>
        ';
    }

    $output .= '</table'>;//line 49
    echo $output;

}
}
?>

即使我将代码更改为

$output .= '</table>';//line 49

它显示我另一个错误

致命错误:未捕获错误:调用C: xampp htdocs hopeplace madmin action.php中未定义的方法mysqli_stmt :: fetchAll():14堆栈跟踪:#0 {main}抛出C: xampp htdocs 第14行的hopeplace madmin action.php


fetchAll()用于PDO。

fetch_all()适用于MySQLi,这看起来像你正在使用的。


你混淆了PDO和mysqli。 尝试下面的代码替换与mysqli相同。 $输出= '';

$stmt = $this->db->prepare($query);
$stmt->execute();

//grab a result set
$resultSet = $stmt->get_result();

//pull all results as an associative array
$result = $resultSet->fetch_all();
链接地址: http://www.djcxy.com/p/69425.html

上一篇: action.php could not fetch the data from the database table

下一篇: PHP: How to fetch a single value from sqlite table