Naar de startpagina van deze website
Naar de startpagina van deze website

District 't Brugse Vrije - Gouw Noordzee




Gebruik dit stukje php-code om links op je website te plaatsen.
<?php
function object2array($object){
$return = NULL;

if(is_array($object)){
	foreach($object as $key => $value)
	$return[$key] = object2array($value);
}else{
	$var = get_object_vars($object);

if($var){
	foreach($var as $key => $value)
	$return[$key] = ($key && !$value) ? NULL : object2array($value);
	}
	else return $object;
	}
return $return;
}


$today = date("Ymd");
$xml = simplexml_load_file("http://scoutnet.be/xml/W12.xml?a=$today");
if (!$xml){exit("Failed to open W12.xml.<br />");}

$myarray = object2array($xml);

$num_marker = count($myarray['W12']['marker']);

echo "<table class=\"snsample\">\n";
for($i = 0; $i < $num_marker; $i++) {
if (($myarray['W12']['marker'][$i]['@attributes']['domain']!='nodomain')&&($myarray['W12']['marker'][$i]['@attributes']['domain']!='')){
	$mylink="<a href='http://www.{$myarray['W12']['marker'][$i]['@attributes']['domain']}'>".utf8_decode($myarray['W12']['marker'][$i]['@attributes']['groupname'])."</a>";
}else{
	$mylink="<a href='http://{$myarray['W12']['marker'][$i]['@attributes']['name']}.scoutnet.be'>".utf8_decode($myarray['W12']['marker'][$i]['@attributes']['groupname'])."</a>";
}
if ($myarray['W12']['marker'][$i]['@attributes']['groupID']!=''){
	$mygroupID='['.$myarray['W12']['marker'][$i]['@attributes']['groupID'].']';
}else{
	$mygroupID='';
}

echo "<tr><td>$mylink</td><td>$mygroupID</td><td>".utf8_decode($myarray['W12']['marker'][$i]['@attributes']['city'])."</td></tr>\n";
}
echo "</table>\n";
?>

Dit is het resultaat:

District 't Brugse Vrije[W1200D]Brugge
Sint-Leo: Scouts en Harmonie[W1202G]Brugge
Sint-Leo: Zeescouts[W1202G]Brugge
Tilleghem[W1203G]Sint-Michiels
Grimmertinge[W1204M]Sint-Andries
Grimmertinge[W1204M]Sint-Andries
Permeke[W1206G]Jabbeke
Kerlinga[W1207M]Brugge
Dominiek Savio[W1209S]Sint-Andries
Sint-Hubertus[W1210S]Sint-Andries
Andre De Pauw[W1211S]Brugge
Karel De Goede[W1212G]Assebroek
Akabe Twiest[W1213G]Assebroek
Scouts Don Bosco[W1214G]Sint-Kruis (Brugge)
Jin Brugse Vrije[W1222G]Sint-Andries

Je kan deze data ook tonen op een google map.


Hulp nodig? aarzel dan niet om ons te contacteren.
© Scoutnet 2024