Hi this is retun I get from the print response
I can access the contacts object information with
PHP Code:
echo $record->fields->Name
But I can not access the Accounts object information with
PHP Code:
echo $record->Account->id
I get this error message
Notice: Undefined property: SObject::$Account in C:\wamp\www\sftest.php on line 21
I am using php 5 and also the sforce partner client toolkit version 13.1
Code:
QueryResult Object
(
[queryLocator] =>
[done] => 1
[records] => Array
(
[0] => SObject Object
(
[type] => Contact
[fields] => stdClass Object
(
[Name] => Steve
[Email] => s.l@test.co.uk
[Login__c] => s.l@test.co.uk
[Password__c] => pwd
[PR__c] => Client
[0] => SObject Object
(
[type] => Account
[fields] => stdClass Object
(
[Name] => GTYU
)
[Id] => 0012000000000000
)
)
[Id] => 0032000000000000
)
)
[size] => 1
)
Bookmarks