Jump to content

Recommended Posts

Newbie need help to put a simple xml as this to mysql with php.

 

Can someone show me an example how to do this. I just need a working example, what i found so far,doesnt help much for me.

 

Much appreciated!!!

 

 

<?xml version="1.0" encoding="UTF-8"?>

<database>

<select insert="animal" name="name" cateogry="category">

  <animal id="1">

  <name>snake</name>

  <category>reptile</category>

  </animal>

 

  <animal id="2">

    <name>frog</name>

    <category>amphibian</category>

  </animal>

 

  <animal id="3">

  <name>tuna</name>

  <category>fish</category>

  </animal>

 

  <animal id="4">

  <name>racoon</name>

  <category>mammal</category>

  </animal>

 

</select>

</database>

Link to comment
https://forums.phpfreaks.com/topic/192810-newbie-need-help/
Share on other sites

Am I right in guessing you want to parse the XML above and insert each item (<name> and <category>) into the database? You can parse XML easily with simpleXML <- click for examples and documentation on the use of simpleXML

 

If you're familiar with how to use MySQL with PHP you should be able to work out how to insert each item in to a MySQL database, once you have understood the basics of simpleXML.

Link to comment
https://forums.phpfreaks.com/topic/192810-newbie-need-help/#findComment-1015686
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.