This is my response code:
'[{"id":"153","title":"xyz","description":"abc"},
{"id":"154","title":"xyy","description":"abb"}]'
in this code i need to get values from id=154 only and i need only that particular array values only using php code?
if I have variable $a=154; it will get that particular id and title and description values only. if I have variable $a=153; it will get that particular id and title and description values only.
json_encode()andjson_decode()functions.