↧
Answer by edwardmp for Extracting XML data into MySQL
You can turn the string containing the products separated by a comma to an Array of products, for example using the explode() function in PHP.Then simply loop through all products in the array,...
View ArticleExtracting XML data into MySQL
Spent countless hours trying to figure this out to no avail. I get a whole load of XML files and ideally was looking to find way of importing the transaction straight into the database so I don't have...
View Article