Lid |
|
Werrkt dit?
<?php
$json = file_get_contents('HIER-STAAT-MIJN-URL', true);
$decode = json_decode($json, true);
foreach($decode as $item)
{
echo $item['naam'] . '<br>';
}
?>
<?php $decode = json_decode($json, true); foreach($decode as $item) { echo $item['naam'] . '<br>'; } ?>
|