我有一个适用于 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);
}
?>
任何帮助,将不胜感激