1

我有一个适用于 android 的购物清单应用程序,我正在使用 PHP 进行设计,并且我在 mySQL 上有一个数据库。在那个数据库中,我有一个名为 Products 的表。在产品中只有两列,列表和产品。每个列表将有许多产品。我希望能够使用应用程序用户选择的任何列表中的所有产品填充页面。

我正在使用带有 JSON 的 PHP 从 mySQL 读取信息。这与我想要的类似,但这将读取数据库中的所有列表和产品。我只想要用户在屏幕上选择的列表。

<?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 products") 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["list"] = $row["list"];
        $product["name"] = $row["name"];


        // 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);
}
?>

任何帮助,将不胜感激

4

1 回答 1

2

由于 android 应用程序需要通过 HTTP 请求来获取数据,因此将 GET 变量与用户在应用程序中选择的表的值一起传递。然后读取 PHP 中的值$_GET["table"]

于 2013-04-06T18:18:33.400 回答