when you can see the var_dump your DB access seems to work, right?
so, for your output THIS should work now:
while(@list($key, $val)=@each($debut_item)) {
while(@list($key2, $val2)=@each($val)) {
echo "$key2 is $val2 <br>";
}
}
but the previous code i postet also should have worked, and not result in an exprect-whatever error ...
?