How to generate xml in codeigniter How to generate xml in codeigniter codeigniter codeigniter

How to generate xml in codeigniter


Looks like you are developing an API. Why don't you use the RESTServer plugin for CodeIgniter?

It's all handled for you and you don't have to worry about the format. You can choose to output in JSON or XML.

Plugin developed by Phil: https://github.com/philsturgeon/codeigniter-restserver


I believe the most practical, logical and error free way to generate an XML is to create a DOMDocument as suggested by Eineki in this answer, allowing the xmltree to be searched through an xpath query.

With this said, some years ago Dan Simmons created a single MY_xml_helper.php that you can just copy to your application/helpers folder directly. Here's the entire code without comments: