Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7399133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:01:07+00:00 2026-05-29T04:01:07+00:00

i have a XML File i want to insert data from that XML file

  • 0

i have a XML File i want to insert data from that XML file to the Database

if tried with the following code but its not storing data in datatase

$sql = "LOAD DATA INFILE 'corporatenews/$zname' INTO TABLE `corporatenews` FIELDS TERMINATED BY '|' LINES STARTING BY '<row>' TERMINATED BY '</row>' (`ByLine`,`StoryId`,`PublishDate`,`Author`,`Category`,`SubCategory`,`TitleLine`,`SubTitleLine`,`StoryMain`,`Flag`)";

$zname is the variable that stores the xml file name

i tried to catch error by mysql_error but nothing showed up

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T04:01:08+00:00Added an answer on May 29, 2026 at 4:01 am

    It looks like you may be overcomplicating things by trying to shove the file directly into MySQL. For a simple solution you may be able to read the entire XML file into memory w/ file_get_contents, then just insert it into MySQL from PHP.

    EDIT: Per OP request for clarification.

    OK, well there are a bunch of ways to parse an XML file in PHP, the easiest way IMO is SimpleXML. Basically, you want to read in the file, and then iterate over it creating a bunch of INSERT statements. It could be quicker to batch the insert statements, but forget about that for now.

    The code would be something like this (this code assumes the MySQL connection is setup properly):

    // iterate over XML elements
    $oXml = new SimpleXMLElement('path/to/file.xml', 0, true);
    foreach($oXml as $oElement) {
      // build main part of query
      $sSql = 'INSERT INTO (`ByLine`,`StoryId`,`PublishDate`,`Author`,`Category`,`SubCategory`,`TitleLine`,`SubTitleLine`,`StoryMain`,`Flag`) VALUES (';
    
      $sSql .= $oXml['ByLine'] . ',';
      $sSql .= $oXml['StoryId'] . ',';
    
     // ..
    
    }
    

    Basically you use SimpleXML to extract the data from the XML attributes / child nodes, then you build up a string you can pass to mysql_query.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this xml that I want to insert some info, the code is
I have an XML file I want to insert that in a Datatable. The
I have a xml file which contains data I want to insert into a
I have an xml file that I want to configure using a bash script.
I have an xml data file and I want to populate a listview in
I have a flash applet that I want to grab a remote XML file
I have a ListView that is populated using an XML file. However, I want
I have a big (1.9 GB) XML file which has data I want to
I want to read the following XML file received from my e-commerce site and
I exported some data from my database table into sql file as insert statements.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.