Parse a XML FILE With PHP

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
npirard
Forum Newbie
Posts: 2
Joined: Tue Jul 24, 2007 7:02 am

Parse a XML FILE With PHP

Post by npirard »

Hello,

I Would to parse the next XML FILE into My data base (MYSQL). IS Anyone can help me ,?

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<TABLE NAME="cds">
	<row>
		<column name="titel">1</column>
		<column name="interpret">1</column>
		<column name="jahr">1</column>
	</row>
</TABLE>
<TABLE NAME="cdrr">
	<row>
		<column name="nom">1</column>
	</row>
</TABLE>
Jello
Forum Newbie
Posts: 16
Joined: Mon Jul 16, 2007 1:53 pm

Post by Jello »

do a search for my user name, I posted some stuff on parsing XML...

if you have php5 you should be able to use simpleXML which is well... simple :)
Post Reply