First of all, I gotta say I'm pretty new to PHP and I'm trying to get a PHP object on which I can use foreach.
The following string is passed through $.ajax(); I'm trying to turn the following string:
$menu = "[
{"title" : TEST1, "href" : #},
{"title" : TEST2, "href" : QWERTY},
{"title" : TEST3, "href" : QWERTY, "active" : 1}
]"
into and php object on which I can use a foreach loop:
foreach($menu as $li){
echo $li['title'];
}
Am I using the optimal solution for creating the menu items or should I be following another format?
Thank you very much in advance!
Best regards, Alex G.