0

我对 PHP 很陌生,我只是在看一个设置 WAMP 服务器并使用 PHP 连接服务器的示例。我将一些数据插入到数据库中的表中,并希望使用 PHP 文件检索所有数据。

当我尝试通过这样做来检查输出时:

“ localhost/android_connect/get_all_products.php ”

我收到此错误:

解析错误:语法错误,第 5 行 C:\wamp\www\android_connect\get_all_products.php 中的意外 '$response' (T_VARIABLE)

这是一个例子:

    <?php
    // array for JSON response

    $response = array();
    $db = new DB_CONNECT(); 
    $result = mysql_query("SELECT *FROM products") or die(mysql_error());

    if (mysql_num_rows($result) > 0) {
        $response["products"] = array();
        while ($row = mysql_fetch_array($result)) {

            $product = array();
            $product["id"] = $row["id"];
            $product["name"] = $row["name"];
            $product["price"] = $row["price"];
            $product["description"] = $row["description"];
            $product["created_at"] = $row["created_at"];
            $product["updated_at"] = $row["updated_at"]; 
            array_push($response["products"], $product);

        }
        
        $response["success"] = 1;
        echo json_encode($response);
     } else {

        $response["success"] = 0;
        $response["message"] = "No products found";
        echo json_encode($response);

    }
    ?>

我知道它的语法错误,但我找不到确切的位置。

4

2 回答 2

0

这可能是原因

1)

$result = mysql_query("SELECT *FROM products") or die(mysql_error());

在该行中,您将输出存储到结果变量可能是错误行...

使用下面的格式......它就像冠军一样工作:)

 $Result = mysql_query($sql, $conn); 
if (!$Result){ 
echo "<br>** Error in database table <b>".mysql_error()."</b><br>$sql"; 
}
else
{
   //do something you want to do...
}

希望这可以帮助....

于 2013-10-09T08:44:03.103 回答
0

我已经修改了您的代码,请检查下面

<?php
// array for JSON response

$response = array();
$db = new DB_CONNECT(); 
$result = mysql_query("SELECT *FROM products") or die(mysql_error());

if (mysql_num_rows($result) > 0) {
    while ($row = mysql_fetch_array($result)) {

        $product = array();
        $product["id"] = $row["id"];
        $product["name"] = $row["name"];
        $product["price"] = $row["price"];
        $product["description"] = $row["description"];
        $product["created_at"] = $row["created_at"];
        $product["updated_at"] = $row["updated_at"]; 
        $products[] = $product;

    }

    $response["products"] = $products;
    $response["success"] = 1;
    echo json_encode($response);
 } else {

    $response["success"] = 0;
    $response["message"] = "No products found";
    echo json_encode($response);

}
?>
于 2013-10-09T08:12:21.687 回答