I have a Question. How do I get the values from this PHP result? Doing print_r($result); I get the following:
stdClass Object
(
[offset] => 0
[results] => Array
(
[0] => stdClass Object
(
[shipping] => Kostenlose Lieferung.
[price] => EUR 8,03
)
[1] => stdClass Object
(
[seller] => Zooster
[shipping] => EUR 3,00
[price] => EUR 9,06
)
)
[cookies] => Array
(
[0] => x-wl
[1] => session-id-time="2082754801l"
[2] => session-id="2510769";
)
[connectorVersionGuid] => lalala
[connectorGuid] => blavla
[pageUrl] => http://www.lala.com
)
Looking at other posts I cannot figure it out. I looked at: How to access a property of an object (stdClass Object) member/element of an array?. This gives me a bit of anwser but here I have: an object within an array within an object
I am lost. I want to echo the seller, shipping and price. Who can shed some light on this?