TheEarthWillShake
Member
I have a question.
say I have 2 arrays.
arrayNames
arrayContent
so arrayNames has ProjectName, ProjectID, ProjectDate
and arrayContent has Server Implementation, 123, 05/30/07
I want to loop through and create a XML file. The other thing is, there are more then one project so I need to continue adding to the file once I start.
so the end product is
<Projects>
<Project>
<ProjectName>Server Implementation</ProjectName>
<ProjectID>123</ProjectID>
<ProjectDate>05/30/07</ProjectDate>
</Projects>
</Project>
Thanks
say I have 2 arrays.
arrayNames
arrayContent
so arrayNames has ProjectName, ProjectID, ProjectDate
and arrayContent has Server Implementation, 123, 05/30/07
I want to loop through and create a XML file. The other thing is, there are more then one project so I need to continue adding to the file once I start.
so the end product is
<Projects>
<Project>
<ProjectName>Server Implementation</ProjectName>
<ProjectID>123</ProjectID>
<ProjectDate>05/30/07</ProjectDate>
</Projects>
</Project>
Thanks