i just started looking into this
does someone have any good examples?
heres what i have so far:
{from the perldoc}
#!/usr/bin/perl
use XML::XQL;
use XML::XQL::DOM;
use Data::Dumper;
$parser = new XML::DOM::Parser;
$doc = $parser->parsefile ("bookstore.xml");
$query = new XML::XQL::Query (Expr => "//first-name");
@result = $query->solve ($doc);
$query->dispose;
print Data::Dumper->Dump(
);
which is great but ugly
i want to find a way to reprocess this to
make it look kewl
come on be my MonkAY