<?php $json = '{ "movies": [ "Jurassic Park", "James Bond", "once upon a time in the west", "Waterworld" ], "recipes": [ "Lasagne", "Pizza", "Salad" ] }'; $array = json_decode($json); print_r($array); foreach($array->movies as $movie) { echo '<li>'; echo $movie; echo '<li>'; }
You have javascript disabled. You will not be able to edit any code.