Ryan Bishop - 2009-07-26 13:01:39 -
In reply to message 1 from Ryan Bishop
edit - that didn't work. only stored the first category with the simple xml parser. had to use the regular xml parser and add these lines.
line 266:
case "CATEGORY":
$this->category .= $data;
break;
line 291:
$this->output[$this->counter]['category'] = trim($this->category);
* basically just asks the xml parser to look for another tag. you can have it look for any tag you want by updating the lines above.