Owner first name
$data->{owner}->{first_name}

Try to use Data::Dumper to see actual structure of the $data

use Data::Dumper;
print Dumper($data);

it will give you an idea how to extract information from a reference on hash

John Keegan wrote:

I need some help from a Perl guru... In the process_order sub of
register.info.cgi, right before the $xcp_request to register the domain, are
this lines:

    $data->{owner}=$owner;
    $data->{billing}=$billing;
    $data->{tech}=$tech;

How do I retrieve the billing information from $data? billing_first_name,
billing_last_name, etc.?

--
John Keegan
[EMAIL PROTECTED]
http://RackShare.com

-- 
Evgeniy
OpenSRS developer
 


Reply via email to