Hallo liebe Gemeinde
Habe ein Menü in NewMysqli was funktioniert, DB abfrage sieht so aus:
wenn ich das jetzt mit PDO erstellen will, habe ich ein Problem mit fetch_object()
Die Fehlermeldungen sind: Warning: Attempt to read property "parent_id" on array
Warning: Attempt to read property "id" on array
Warning: Attempt to read property "label" on array
Warning: Attempt to read property "id" on array
Warning: Attempt to read property "ziel" on array
Leider weis ich jetzt nicht mehr weiter, das manuall verstehe ich nicht wirklich, die sachen die ich probiert habe, bringen nur andere meldungen zb decrapet
Hat einer von euch eine Idee oder Hilfe für mich?
Habe ein Menü in NewMysqli was funktioniert, DB abfrage sieht so aus:
PHP:
$items = $con->query("SELECT id, label,ziel,link_url, parent_id FROM dyn_menu ORDER BY parent_id, id ASC");
while ($obj = $items->fetch_object()) {
if ($obj->parent_id == 0) { // hier
$parent_menu[$obj->id]['label'] = $obj->label; // hier
$parent_menu[$obj->id]['link'] = $obj->ziel; // hier
} else {
$sub_menu[$obj->id]['parent'] = $obj->parent_id;
$sub_menu[$obj->id]['label'] = $obj->label;
$sub_menu[$obj->id]['link'] = $obj->ziel;
if (empty($parent_menu[$obj->parent_id]['count'])) {
$parent_menu[$obj->parent_id]['count'] = 0;
}
$parent_menu[$obj->parent_id]['count']++;
}
}
Die Fehlermeldungen sind: Warning: Attempt to read property "parent_id" on array
Warning: Attempt to read property "id" on array
Warning: Attempt to read property "label" on array
Warning: Attempt to read property "id" on array
Warning: Attempt to read property "ziel" on array
Leider weis ich jetzt nicht mehr weiter, das manuall verstehe ich nicht wirklich, die sachen die ich probiert habe, bringen nur andere meldungen zb decrapet
Hat einer von euch eine Idee oder Hilfe für mich?