Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how can i fetch data from this array (stdClass) php??

Array
(
    [0] => stdClass Object
        (
            [id] => 4
            [programs] => FireFox
            [version] => 4.00
            [type] => Browsers
            [description] => fdmkfdsf,sdfdsfdsfdsf
dfdsf
sd
f
dsf
ds
f
            [views] => 2
            [serial] => 434343-343434-3434-c
        )

)

when i tried to fetch it using foreach i got that error

#
A PHP Error was encountered

Severity: 4096

Message: Object of class stdClass could not be converted to string

Filename: views/results.php

Line Number: 2

How can i get the data of the program(e.g FireFox)??

share|improve this question
possible duplicate of How to get object(stdClass) from array. – Gordon Apr 3 '11 at 21:56

1 Answer

$data = (your data);

echo $data[0]->programs;
share|improve this answer
i tried but it give me that A PHP Error was encountered Severity: Notice Message: Trying to get property of non-object Filename: controllers/Serials.php Line Number: 82 – Buffon Apr 3 '11 at 22:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.