[insert_php]
$data = file_get_contents(“http://clubservice.dbu.dk/api/Team?APIKey=39ada682-e976-409f-a11a-5d6d721aeea3”);
$data = json_decode($data);
$tableHeader = “
“;
foreach($data as $rows){
$rowdata .= “
“;
}
echo “
“;
[/insert_php]