XML nodes with the same name and Flash

I have a simple search form on my site. It allows users to pull data from a database and then display that data. So the user would select the data set they want, a PHP script queries the database, and then puts that data into a XML file. This part is working fine.

However I can not seem to get the data to display correctly in Flash. I tried the tutorial on this site for Flash and XML, and it works, but only displays one result. The problem I believe is that all the child nodes have the same tag. My XML file would look something like:


 <?xml version="1.0" ?>
<Users>
    <Name>John Doe</Name>
    <Name>Dave Doe</Name>
    <Name>Jane Doe</Name>
</Users>

I am new to AS, and can’t find anything to show how to display multiple results all the with same tag name. The flash file only shows the first result. Can anyone show me a tutorial or a guide on how to display all the items from the XML file in a dynamic text box?

My current AS code is:


list_xml = new XML();
list_xml.ignoreWhite = true;
list_xml.onLoad = loadXML;
list_xml.load("file.xml");
function loadXML(loaded) {
if (loaded) {
_root.users = this.firstChild.childNodes[0].firstChild.nodeValue;
_root.name = this.firstChild.childNodes[0].firstChild.nodeValue;
name_txt.text = _root.name;
}
else {
trace("file not loaded!");
}
}