Tutorials on Parsing and Storing XML Feeds

Asked By 190 points N/A Posted on -
qa-featured

I need some feeds to parse and I am wondering where to store xml feed… Is there a guide or tutorial for this? I am just a beginner so it would be awesome if somebody could help me with this.

SHARE
Answered By 0 points N/A #163516

Tutorials on Parsing and Storing XML Feeds

qa-featured

You can parse XML feeds using SimpleXML extension. It's easy, quick and more simple than using regular expressions to parse data from XML documents.

SimpleXML is a powerful tool and there are many tutorials for using this extension on the web.

For storing XML feed you should: 

1)  Open a connection.

2)  Choose the database you want to store your data in.

3)  Add records to the database using MySQL statements.

4)  Close the connection.

Related Questions