Hello,
im trying to import xml-data to MySQL.
I only want to import rows without attributes,
like 'aaa,bbb' in the example below.
(I have no problems to import all rows.)
Im using php + DOM XML
<mydoc>
<test>
<text1>aaa</text1>
<text2>bbb</text2>
</test>
<test id="something">
<text1>ccc</text1>
<text2>ddd</text2>
</test>
</mydoc>
All help appreciated!
Regards Jorgen
im trying to import xml-data to MySQL.
I only want to import rows without attributes,
like 'aaa,bbb' in the example below.
(I have no problems to import all rows.)
Im using php + DOM XML
<mydoc>
<test>
<text1>aaa</text1>
<text2>bbb</text2>
</test>
<test id="something">
<text1>ccc</text1>
<text2>ddd</text2>
</test>
</mydoc>
All help appreciated!
Regards Jorgen