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

District Noord - Gouw Heide




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/A25.xml?a=$today");
if (!$xml){exit("Failed to open A25.xml.<br />");}

$myarray = object2array($xml);

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

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

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

Dit is het resultaat:

District Noord[A2500D]Essen
Sint-Jacobs Gidsen[A2523M]Kapellen (Antwerpen)
De Reigers[A2527S]Zandvliet
Sint-Godelieve[A2542M]Kalmthout
Sint-Maarten[A2544G]Kalmthout
O.L.V. Essen[A2545S]Essen
Jins - Essen Centrum[A2545S]Essen
Sint-Mauritius[A2551G]Kapellen (Antwerpen)
Sint-Norbertus Heikant[A2552G]Essen
O.L.V. Onbevlekt Ontvangen[A2563S]Kapellen (Antwerpen)
Sint-Jozef[A2571G]Wuustwezel
Dominic Savio[A2576S]Kalmthout
Scouts & Gidsen Sint-Hubertus Hoevenen 88-89[A2588M]Stabroek

Je kan deze data ook tonen op een google map.


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