Jump to content

How do I convert a csv file to xml in php?


saywhatyousee

Recommended Posts

I have a csv file which contains this data:

 

person1,person2,person3
first,john,steve,mike
last,doe,whinney,speirs

 

I want to create an xml file which looks like this:

 

<root>

    <person1>

        <first>

            john

        </first>

        <last>

           doe

        </last>

    </person1>

    <person2>

        <first>

            steve

        </first>

        <last>

           whinney

        </last>

    </person2>

    <person3>

        <first>

            mike

        </first>

        <last>

           speirs

        </last>

    </person3>

</root>

 

Thanks

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.