Vielen Dank Desaster!
Ich bin mittlerweile so weit:
Irgendwie stimmt da allerdings etwas mit der Farbgebung nicht!
-> http://www.marianum-steinberg.at/2009/test/gall.php
Ich bin mittlerweile so weit:
PHP-Code:
function echoarray($var, $depth=0, $cnt=1) {
$i = 0;
foreach ($var as $val) {
$padd = $depth * 16;
IF (!isset($cnt) || $cnt == 0) {
$bgcolor = "#f1f5fa";
$cnt = 1;
} ELSE {
$bgcolor = "#fff";
$cnt = 0;
}
echo "<DIV STYLE=\"background-color: ".$bgcolor."; padding: 0 0 0 ".$padd."px;\">".$val[0]["name"]." ".$depth."</DIV>\n";
if (isset($val["SUB"])) {
// $cnt == 0 ? $cnt=1 : $cnt=0;
echoarray($val["SUB"], $depth+1, $cnt);
}
$i++;
}
}
-> http://www.marianum-steinberg.at/2009/test/gall.php
Kommentar