Hello, Can somebody help me on how to read and loop through this data? http://api.oodle.com/api/v2/listing...tegory=job&location=San Mateo, CA&format=json Please see url for the JSON data. Please help me on this, been trying to figure it out for 2hrs already and can't seem to get it .
<?php $data = preg_replace("/jsonOodleApi\(|\);$/", "", file_get_contents("http://api.oodle.com/api/v2/listings?key=TEST®ion=usa&category=job&location=San%20Mateo%2C%20CA&format=json")); $data = json_decode($data); var_dump($data); ?> PHP: You now have the data within an object...