Here is an example xml file
Code: Select all
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<root>
<ushout_message />
<data source="bf882ed25e322d48" reply_to="0" />
<message>Shout out to the world</message>
</root>Code: Select all
`id` INT( 6 ) NOT NULL ,
`source` INT( 20 ) NOT NULL ,
`reply` INT( 20 ) NOT NULL ,
`message` VARCHAR(200) NOT NULL ,
PRIMARY KEY ( `id` )source = data source attribute in the xml file
reply = reply_to in xml file
message = message in xml file.
So wondering if anyone can help me out here?
Kind regards