i create a array in my php file
$array = array();
and give it value and encode it by json like this :
`json_encode($array)`;
this is my output :
[
"1",
"notification 1",
"hello",
"first notification",
"2015-07-23",
"2015-07-30",
"www.google.com",
"2",
"notification 2",
"hello2",
"second notification",
"2015-07-23",
"2015-07-28",
"www.yahoo.com"
]
how can i parse it in android
i want a array in android
plz help me