0
我有Android應用程序。與PHP論壇。暫時我有一個單用戶表來存儲用戶詳細信息 但我這樣做因爲我需要允許用戶發佈和評論從android界面到論壇。 我需要從我的論壇中提供主題列表,當用戶選擇其中一個主題時,它會顯示內容,他可以點擊評論按鈕進入評論版面編寫併發送他/評論到論壇。在Android中顯示php論壇主題列表
現在我有此PHP代碼列出主題
<?php
//This page let display the list of topics of a category
function __construct() {
require_once 'DB_Connect.php';
// connecting to database
$this->db = new DB_Connect();
$this->db->connect();
}
if(isset($_GET['parent']))
{
$id = intval($_GET['id']);
}
$dn = mysql_query('select t.title, u.username as author, from topics as t left join topics left join user as u where t.parent="'.$id.'" and t.id2=1 group by t.id order by t.timestamp2 desc');
if(mysql_num_rows($dn)>0)
{
$dn = mysql_query("SELECT * FROM topics WHERE id = $parent");
// return user details
$posts = array();
if(mysql_num_rows($dn)) {
while($post = mysql_fetch_assoc($dn)) {
$posts[] = array('post'=>$post);
}
}
} else {
// return false;
}
?>
,但我敢肯定,正確與否也是我的Android身邊,我應該創建一個數組來保存這個值顯示.. 我需要知道,如果我的觀念是正確的,否則我會浪費我的時間......
感謝很多提前
你是什麼意思?'我敢肯定是正確與否?運行它,看看它是否工作 – Ranty 2013-03-17 05:56:46