$content = "
Sitemap
";
$content .= walkpages();
function to_url($item) {
return strtolower(str_replace(" ","_",$item));
}
function walkpages($format="xml",$level=0,$parent=0,$prev="") {
$domain = "http://".$_SERVER['SERVER_NAME'];
$level++;
$px = $level*20;
$style="display:block;text-indent:".$px."px";
$result = mysql_query("select * from projecten where parent=$parent order by positie");
while ($res = mysql_fetch_assoc($result)) {
$return .= "$res[titel]";
$return .= walkpages($format,$level,$res[id],$prev."/".to_url($res[titel]));
}
return $return;
}
?>
Strandslag 224