I have got json response and i have to display only those data which status = 1 so how can i do this please help me
my response is
JSON: (
{
name = "Kate Bell";
phone = "(555) 564-8583";
status = 0;
},
{
name = "Daniel Higgins";
phone = "(408) 555-5270";
status = 0;
},
{
name = "John Appleseed";
phone = "888-555-5512";
status = 0;
},
{
name = "Anna Haro";
phone = "<null>";
status = 1;
},
{
name = "Hank Zakroff";
phone = "<null>";
status = 1;
},
}