Quantcast
Channel: Upload XML feed to mysql using PHP - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by cincodenada for Upload XML feed to mysql using PHP

To be a bit more specific:You'll obviously need to set up a table and database structure. I'm going to assume you have, or at least can figure out how to, set this up, and how to write to a database....

View Article



Answer by Richard H for Upload XML feed to mysql using PHP

First you'll need to define a data model. Then you'll need an xml parser to parse the feed, extract the data and populate your data model. Then you'll need to pass your model object to a DAO which...

View Article

Answer by Andy Lin for Upload XML feed to mysql using PHP

if you want to parse the data and store thencreate a table for productparse the xml and get the fieldsinsert into db or update existing dataso, what's your problem?

View Article

Answer by Matt Williamson for Upload XML feed to mysql using PHP

If it's taken from the internet you can just do<?php$feedData = file_get_contents('http://mywebsite/myfeed.xml');?>

View Article

Upload XML feed to mysql using PHP

I have an XML feed coming in:<?xml version="1.0"...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images