my $status = $dom->findnodes("..."); my $msg = $dom->findnodes("..."); . . print $status->getFirstChild()->data, "\n"; print $msg->getFirstChild()->data, "\n"; #### my ($status) = $dom->findnodes("..."); my ($msg) = $dom->findnodes("..."); . . print $status->getFirstChild()->nodeValue(), "\n"; print $msg->getFirstChild()->nodeValue(), "\n";