I'm wondering if there is an accepted method to convert a tab delimited text file to XML, so that it can be imported in Adobe Flex. I would prefer to use PHP to achieve this.
Thanks
Edit:
The tab delimited text file I am looking to convert is in the format
Refnumber Location Name Age
123 North America Steve 32
And I am looking to convert to
<data>
<refnumber> 123 </refnumber>
<location> North America </location>
<name> Steve </name>
<age> 32 </age>
</data>