[Solved] How to get these array values using foreach? [closed]
[ad_1] Have a loop inside a loop if you are unsure how many results you will have. For instance… $YourArray = array(); //Add to array here. foreach($YourArray as $LevelOne): foreach ($LevelOne as $LevelTwo): echo $LevelTwo . ‘ – ‘; endforeach; echo ‘<br>’; endforeach; Would output for you. priyaa – aarthy testa – test member 1 … Read more