Brian Arnold wrote:
> 
> The first part of the code - not so sure how to clean up - but you could
> do something like this
> 
> $items[ $j++ ] = $_ foreach ( @{ $T_OWNER_INFO{ $owner }} );
> ($name, $phone, $pager, $email) = @items;


Isn't it nearly the same like:
@items = @{ $T_OWNER_INFO{ $owner }};

What I mean is to make it more simpler:
($name, $phone, $pager, $email) = @{ $T_OWNER_INFO{ $owner }};

Greetings,
Andrea

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to