Help for this page

Select Code to Download


  1. or download this
    My xml file looks like this:
    ========company.xml=======
    ...
        <product>product 2</product>
    </group>
    </company>
    
  2. or download this
    ========company.pl========
    #!/bin/perl -w
    ...
       print "\nGroup Name: ",$my_group->first_child("product")->text;
    }
    ================