Help for this page

Select Code to Download


  1. or download this
    my $status = $dom->findnodes("...");
    my $msg = $dom->findnodes("...");
    ...
    .
    print $status->getFirstChild()->data, "\n";
    print $msg->getFirstChild()->data, "\n";
    
  2. or download this
    my ($status) = $dom->findnodes("...");
    my ($msg) = $dom->findnodes("...");
    ...
    .
    print $status->getFirstChild()->nodeValue(), "\n";
    print $msg->getFirstChild()->nodeValue(), "\n";