我正在为我的最后一年项目开发 android 应用程序。参考了一些在线教程和示例,我成功地将一些用户信息和详细信息存储到了数据库中。但是我需要帮助来向主页显示用户和一些用户输入信息。类似于脸书主页。有人可以给我一个方向线索或任何在线文章或教程吗?请感谢您的帮助,谢谢。
这是我存储用户信息和用户输入的 php 文件的一部分。我想在一个页面中显示所有这些。我应该对我的 xml 文件和主要活动类文件进行什么编码?
else if ($tag == 'report') {
//Request type is report location report
$name = $_POST['name'];
$address = $_POST['address'];
$traffic = $_POST['traffic'];
$whathappen = $_POST['whathappen'];
$comment = $_POST['comment'];
//store information
$report = $db->storeReport($address, $traffic, $whathappen, $comment);
if($report) {
//report stored successfully
//$response["success"] = 1;
$responce["report"]["name"] = $report["name"];
$responce["report"]["address"] = $report["address"];
$responce["report"]["traffic"] = $report["traffic"];
$responce["report"]["whathappen"] = $report["whathappen"];
$responce["report"]["comment"] = $report["comment"];
$responce["report"]["created_at"] = $report["created_at"];
$responce["report"]["updated_at"] = $report["updated_at"];
echo json_encode($responce);
}