Thursday 30 June 2005 2:46:22 am
hello,
I'm looking for accessing to email information(e.g) that is in my object data_map. I acces to the object_id without any problem:
$parameters = $process->attribute( 'parameter_list' );
$objectID =& $parameters['object_id'];
but how can I get the content of the object? I tried something like:
$data_map=& $parameters['data_map'];
$email = $data_map['email']->attribute('email');
but it doesn't work. any help?
|