Enjoy unlimited access to all forum features for FREE! Optional upgrade available for extra perks.
Domain summit 2024

XML feed to MySQL insert

Status
Not open for further replies.

EM @MAJ.com

Visit MAJ.com for domain forsale.
Legacy Exclusive Member
Joined
Sep 10, 2002
Messages
5,833
Reaction score
75
I search google but no success, not giving up yet!

I need to know best practice to auto-upload the xml feed I received from partners to my MySQL database.

Everyday, I received this XML file e.g. 'testdata.xml'. I add these xml values to the table manually everyday, I need to automate this process.
<?xml version="1.0" encoding="utf-8"?>
<elements>
<device>0-123456</device>
<unixTime>1034268516</unixTime>
<location>N</location>
<data length="9" source="pc" encoding="hex">0xC0560D72DA4AB2445A</data>
</elements>

I need to create a php script to open all xml files (1testdata.xml, 2testdata.xml, 3testdata.xml, etc)and insert these to my Mysql database table using the same field name .e.g device, unixtime, location, and data.

My initial assessment is to create a php script, to read the xml file, capture the xml data, then insert to my MySQL table. And set up a cron to run the script every hour.

Creating the php script to read the xml file, inserting the data to MySQL is where I'm stuck. Any idea where to begin?

Thank you,
em @ king.net
 

katherine

Country hopper
Legacy Exclusive Member
Joined
Jul 9, 2005
Messages
8,428
Reaction score
1,290
You need an XML parser. PHP has XML functions for this purpose.
But it would better if you get the data in CSV format instead, then you can do bulk insert in mySQL using LOAD DATA INFILE (fast and easy). I prefer CSV but it's just me.

Here's a tutorial:
http://fuelyourcoding.com/reading-xml-with-php/

Basically you need a parser to read the file in a loop, extract the relevant tags and perform an insert for each line.
A slightly different approach is to parse the XML file, output the fields to a CSV file, then perform a bulk insert of that intermediate CSV file into mySQL using LOAD DATA INFILE. Faster than inserting line by line and less overhead.
Hope that makes sense :)
 

EM @MAJ.com

Visit MAJ.com for domain forsale.
Legacy Exclusive Member
Joined
Sep 10, 2002
Messages
5,833
Reaction score
75
Hi Katherine,

Thanks again for your input. I print the tutorial, and will read it.
Cheers.
 
Status
Not open for further replies.

The Rule #1

Do not insult any other member. Be polite and do business. Thank you!

Sedo - it.com Premiums

IT.com

Premium Members

AucDom
UKBackorder
Be a Squirrel
MariaBuy

Our Mods' Businesses

UrlPick.com
URL Shortener

*the exceptional businesses of our esteemed moderators

Top Bottom