I did a search data using mongodb and get results, but I have trouble when they want to get the data into list. My data :
I have tried using :
foreach($data as $doc) {
echo $doc['nama']."<br>";
}
But there is an error Undefined index: nama
If the code you posted is the $data
var, your foreach could be something like:
foreach($data as $key => $doc) {
echo $doc['obj']['nama']."<br>";
}