[insert_php]
//array waarin de url’s van de diensten in komen te staan
$results = array();
//open de directory waarin de diensten staan
$handler = opendir(“wp-content/uploads/lichtbron”);
//doorloop alle bestanden die hier in staan
while ($file = readdir($handler))
{
//directory zelf of bovenliggende directory natuurlijk niet meenemen
if ($file != “.” && $file != “..”)
{
$results[] = $file;
}
}
//sorteren op bestandsnaam, hierdoor komt de meeste recente bovenaan
arsort($results);
$aantal=0;
$vorige_lb=””;
//doorloop alle bestanden
foreach($results as $file)
{
//titel voor op de site
$tekst=”De Lichtbron – nr. “.substr($file,6,2).”-“.substr($file,2,4);
//check of het wel een lichtbron is
if(substr($file,0,2)==”lb”)
{
$aantal=$aantal+1;
//bewaar nieuwste voor straks
if($aantal==1){
$huidige_lb=’/wp-content/uploads/lichtbron/’.$file;
$huidige_titel=$tekst;
}
else if($aantal<=11){
$vorige_lb=$vorige_lb.’‘.$tekst.’
‘;
}
}
}
//even netjes afsluiten
closedir($handler);
echo(‘Op deze pagina vindt u de meest actuele Lichtbron.
‘);
echo(‘‘.$huidige_titel.’‘);
echo(‘
bladeren door De Lichtbron is mogelijk door bovenaan of onderin het document op de pijltjes te klikken‘);
echo(‘De Lichtbron‘);
echo(‘Afgelopen 10 uitgaven van De Lichtbron:.
‘);
echo($vorige_lb);
[/insert_php]