That's a great help thanks Bill... I have managed to get the exact result I was looking for!!

Regards
Nic
----- Original Message ----- From: "Bill Marriott" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Thursday, May 03, 2007 9:43 AM
Subject: Re: XML Tree and spaces


I think you'll have a much easier go of it if you try to use tags for structural aspects of the representation, and use either attributes or the contents for data.

In your example, I would use:

<?xml version="1.0"?>
<allTables>
<Customers IDnum="19">
 <name>Bokomo Botswana</name>
 <name>BOTEC</name>
 <name>Gemini Logistics</name>
</Customers>
</allTables>

or

<?xml version="1.0"?>
<allTables>
   <table name="Customers" IDnum="19">
       <row name="Bokomo Botswana">
       </row>
       <row name="BOTEC">
       </row>
       <row name="Gemini Logistics">
       </row>
   </table>
</allTables>


#####################################################################################
This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal
#####################################################################################
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to