我有一个Android的购物清单应用程序,我正在使用PHP设计它,我在mySQL上有一个数据库。在该数据库中,我有一个名为Products的表。在产品中,只有两列,列表和产品。每个清单都有许多产品。我希望能够在应用程序用户选择的任何列表中填充包含所有产品的页面。
我正在使用PHP和JSON来从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);
}
?>
任何帮助将不胜感激
答案 0 :(得分:2)
由于Android应用程序需要HTTP请求来获取数据,因此使用用户在应用程序中选择的表的值传递GET变量。然后使用$_GET["table"]
读取PHP中的值。