On 4/11/04 9:58 am, Joachim Denil <[EMAIL PROTECTED]> wrote:

> Hi,
>  
> I'm trying to read multi-valued fields ( my e-mail alias field ). So far
> I can only read the first value of the field.
> This is what I do:
> my @alias = $entry->get_value("alias", alloption =>1);

Try

  my (@alias) = $entry->get_value("alias", alloption => 1);

> I would be gratefull for your support.
>  
> Greetings,
> Joachim Denil

Cheers,

Chris


Reply via email to