我已经使用函数编写了一个select查询,但它没有从MySQL数据库中返回数据......任何人都可以在这方面帮助我。我上传了截图。
这是conn.php文件
JSONObject jObj = new JSONObject(response);
JSONArray jsonArray= jObj.getJSONArray("types");
boolean s = false;
if (s==jsonArray.toString().contains("restaurant"))
{
}
在index.php上我写了这段代码。
$conn = mysql_connect('localhost','root','');
echo mysql_select_db('classified',$conn);
但这不显示记录。
答案 0 :(得分:1)
更改:
var json = JsonConvert.SerializeObject(list);
进入这个:
if ($result) {
return TRUE;
} else {
return FALSE;
}