Forum Moderators: coopster
print_r($courses);
i get the result something like this:
Array
(
[1] => Array
(
[FIRST_NAME] => Bob
[LAST_NAME] => Smith
)
[2] => Array
(
[FIRST_NAME] => John
[LAST_NAME] => Townsend
)
)
there is only 2 sets of data in the sample output above but sometimes there is more. so i'm wondering how i can take each value from each array and loop it?
thanks in advance for any help