I have this code at the end of a php file in my server:
"echo json_encode($response);"
and with Jparser "read" the encoded data and appear them as a List View. Anything works fine but the encoded data appears to browser when someone call this php file directly from browser.
I try without echo but the list view does not appear in app. I try also " return json_encode($response);" but i have the first same problem with browser!!!
Is there any way to not print json encoded data at browser ? (and my listView works too?)
Thanks !