Simple PHP Class to Generate XML Document
Recently I need to generate an XML document with PHP. Since it’s just a simple task of generating a form of string, I don’t use any XML parser library. So, I create this PHP class which eases me accomplishing that task. It uses PHP Magic Method to generate the XML.
Let’s look at the code: Read the rest of this entry »