我想在我的 iPhone 上的分段 UItableView 中显示这个 json 响应数据。这些部分应该是客户姓名的第一个字母。
这里是http://mobile.beger.org/getdata.php53?object=customer&mode=all
我如何更改我的 mysql_fetch_object?以及如何在我的 Objective-C 代码中实现它?
$rs = mysql_query("SELECT LEFT(CUSTOMER_M.s_name1,1) as FirstLetter,CUSTOMER_M.i_customer_m, CUSTOMER_M.s_name1, COALESCE(CUSTOMER_M.s_town,'unbekannt') as s_town FROM `CUSTOMER_M` WHERE CUSTOMER_M.I_CUSTOMER_M > 0 ORDER BY CUSTOMER_M.S_NAME1");
while($obj = mysql_fetch_object($rs)) {
$arr[] = $obj;
}
echo '{"customer":'.json_encode($arr).'}';
谢谢你的帮助!