I'm using cURL to pull some information from the Etsy API, and I *think* it's returning JSON information?
Here's a sample of the return:
{
"count": 4,
"results": [
{
"listing_id": 61971249,
"state": "active",
"user_id": 10780231,
My question is, how do I turn this into something useful? One of the values returned is the listing's URL, and I want to take that and turn it into a link. I'm honestly not even sure where to start - can this be stored in variables, can I use PHP to process it?
Thanks!