Hi all,
Is it possible to accomplish the following:
Say I have two table Client- Cars. Each client has a specific car(s) with its own properties.
I want to make an XML file, per client in the following format:
<client clientnr"1" name"John Doe">
<cars>
<brand>"BMW"</brand>
<color>"red"</color>
</cars>
<cars>
<brand>"Mercedes"</brand>
<color>"white"</color>
</cars>
</client>
<client clientnr"2" name"John Two">
<cars>
<brand>"Fiat"</brand>
<color>"blue"</color>
</cars>
</client>
etc...
Is it possible to generate this? If yes, how?
Greetings,
Gandalf.
Is it possible to accomplish the following:
Say I have two table Client- Cars. Each client has a specific car(s) with its own properties.
I want to make an XML file, per client in the following format:
<client clientnr"1" name"John Doe">
<cars>
<brand>"BMW"</brand>
<color>"red"</color>
</cars>
<cars>
<brand>"Mercedes"</brand>
<color>"white"</color>
</cars>
</client>
<client clientnr"2" name"John Two">
<cars>
<brand>"Fiat"</brand>
<color>"blue"</color>
</cars>
</client>
etc...
Is it possible to generate this? If yes, how?
Greetings,
Gandalf.