in reply to Rolling in the sheets with XML

Storing your data in a hash $data{url}$, $data{name}, ..., would solve the problem since you'd just have to write something along the lines of:

$data{lc($item->getNodeName)} = $item->getFirstChild()->getData;

Hope this helps, -gjb-

Replies are listed 'Best First'.
Re: Re: Rolling in the sheets with XML
by Anonymous Monk on Apr 30, 2003 at 13:56 UTC
    This is neat, but how does he store the data from his file into a hash? I don't see that in his code.