READ THROUGH ALL POSTS HERE BEFORE ANSWERING
I've already figured some stuff out... for your benefit check it all out!
ive been lookin over some simplexml notes/docs and i havent really found a way to search and return results
example:
<?xml ...?>
<products>
<cat1>
<item>
<name>product 1</name>
<color>blue</color>
</item>
</cat1>
<cat2>
<item>
<name>product 2</name>
<color>blue</color>
</item>
</cat2>
</products>
if the user searches "blue", then i should be able to step through and process the valid <item> structures... same for if they search for "product 1", then just process the one valid structure (including its category)
any links to snippets or ideas are welcome!
thanks guys