Help for this page

Select Code to Download


  1. or download this
    <?xml version="1.0" encoding="UTF-8"?><DataFeed recordCount="1377">
    <SellerInformation><Seller sellerIdFromProvider="527543">BarketShop.co
    +m</Seller><TaxableLocationsCollection><TaxableLocation locationType="
    +state" locationValue="FL">1</TaxableLocation></TaxableLocationsCollec
    +tion><ShippingChargesCollection><ShippingCharge type="fixed"/></Shipp
    +ingChargesCollection></SellerInformation>
    ...
    <ShippingCharge type="fixed"/>
    </ShippingChargesCollection>
    </SellerInformation></DataFeed>
    
  2. or download this
    #!/usr/bin/perl
    use XML::Simple;
    ...
    print $d->{'Seller'}{'sellerIdFromProvider'} . "\n";
    print $d->{'TaxableLocationsCollection'}{'TaxableLocation'}{'locationV
    +alue'} . "\n";
    }