无法使用PHP获得JSON响应?

时间:2015-12-03 21:28:15

标签: php android mysql json

我正在学习创建一个API来为我的Android App返回JSON。 http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/

如果我添加此行

,我没有收到JSON响应

$product["Area"] = $row["Area"];

如果我从下面的文件中删除Above行。然后我得到了答复。

我甚至检查了数据库。我无法理解它为什么会发生。

先谢谢

这是我的PHP文件(get_all_products)

<?php

/*
 * Following code will list all the products
 */

// array for JSON response
$response = array();


// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

// get all products from products table
$result = mysql_query("SELECT * FROM shelter") or die(mysql_error());

// check for empty result
if (mysql_num_rows($result) > 0) {
    // looping through all results
    // products node
    $response["products"] = array();

    while ($row = mysql_fetch_array($result)) {
        // temp user array
        $product = array();
        $product["ID"] = $row["ID"];
        $product["Timestamp"] = $row["Timestamp"];
        $product["Accomodation"] = $row["Accomodation"];
        $product["Area"] = $row["Area"];

        // push single product into final response array
        array_push($response["products"], $product);
    }
    // success
    $response["success"] = 1;

    // echoing JSON response
    echo json_encode($response);
} else {
    // no products found
    $response["success"] = 0;
    $response["message"] = "No products found";

    // echo no users JSON
    echo json_encode($response);
}
?>

1 个答案:

答案 0 :(得分:1)

SELECT *FROM Shelter

它看起来有点奇怪,不应该是

SELECT * FROM Shelter

还可以查看是否在shelter表中有一个Column区域,并且其中包含有效数据。