Please, I need help on this one.
I want to build a multilevel menu, so I want to iterate through an associative array with foreach loop inside smarty template.
First, I have this mysql output:
Now I try to get an associative array from it, so I tried
fetchAll(PDO::FETCH_ASSOC)
, but because the column names are the same, it gives me values from the right column:
Array ( [0] => Array ( [id] => 7 [name] => Beta 1-3 glucan ) [1] => Array ( [id] => 8 [name] => Okinawa Fucoidan )
Please if you have any ideas how to process this table to get a multidimentional menu, let me know.
Thank you.
Either use FETCH_NUM or create aliases in the query.