I have an instance of sugarcrm and you want to get some data from it using special php code.
I use the nusoap client for this. I can get the data, but I want to select only the data of a specific identifier (record). What am I doing,
$response = $client->call('get_entry_list',array('session'=>$session_id , 'module_name'=>'itf_Apartments', 'where'=>'itf_Apartments.id=2', 'order_by'=>'','offset'=>'','select_fields'=>array('name')));
but I am not getting any results. is this any problem with my code ???
source
share