Sorry i dont have anything to show on this but everything i have tried fails.
I have an array which is returned as part of an object. I need to loop through the values and place them in variables then print them on the page.
[Required] => Array
(
[0] => stdClass Object
(
[Field] => Field1
[Question] => Question1
[DataType] => Boolean
)
[1] => stdClass Object
(
[Field] => Field2
[Question] => Question2
[DataType] => varchar
)
[2] => stdClass Object
(
[Field] => Field3
[Question] => Question3
[DataType] => Boolean
)
[3] => stdClass Object
(
[Field] => Field4
[Question] => Question5
[DataType] => Int
)
)
so for example i would like to print out
Field1 is Boolean Field2 is varchar.. etc
Your kind assistance will be greatly appreciated