skip to Main Content

How to display Json data using PHP? – SEO

I have a json file and I want to display its data in a PHP file. I tried with the code below but its not work. $json_output = file_get_contents("https://gdata.youtube.com/feeds/api/playlists/PL3n6kxxrIGdat31ZIf_7wlqtT3I20OqLL?v=2&alt=jsonc"); $json = json_decode($json_output, true); foreach($json->data->items->thumbnail as $day) { echo $day->sqDefault; echo…

VIEW QUESTION
Back To Top
Search