Possible Duplicate:
Fatal error: Cannot use object of type stdClass as array in
Please I keep getting this error:
Fatal error: Cannot use object of type stdClass as array in C:\XAMMP\xampp\htdocs\Yemi\geograph\table.php on line 31
This is the php I am trying to run:

You are actually trying to access the object as array.
I can guess you are having problem when you are using
json_decodewhich is returning an object and inside theforeachloop you are trying to access it like an associative array.Passing the second argument as
truetojson_decodeforce it to return associative array.Make the below change.
Change your this code line
To