PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Marcus Vinícius   XML 2 PHP and PHP 2 XML   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example script file
Class: XML 2 PHP and PHP 2 XML
Read and write XML documents
Author: By
Last change:
Date: 19 years ago
Size: 202 bytes
 

Contents

Class file image Download
<?php

require_once("class_xmlparser.php");
$xmlparser = new XML_Parser();

$xmlparser->setCharset("ISO-8859-1");
$xmlparser->xml2php("example.xml");
$xmlparser->php2xml();
$xmlparser->outputXML();
 
?>