PHP Classes

File: XSLTTransformExample.php

Recommend this page to a friend!
  Classes of Sujay Bhowmick   XSLT Transform   XSLTTransformExample.php   Download  
File: XSLTTransformExample.php
Role: Example script
Content type: text/plain
Description: Example for XSLTTransform
Class: XSLT Transform
Transform XML documents with XSL style sheet
Author: By
Last change:
Date: 21 years ago
Size: 244 bytes
 

Contents

Class file image Download
<HTML>
<HEAD><TITLE></TITLE></HEAD>
<BODY>
<?php

include_once("XSLTTransform.php");

/* Instanciate the class */
$objXSLT = new XSLTTransform("me.xml", "me.xsl");

/* echo the result tree */
echo $objXSLT->getResultTree();
?>
</BODY>
</HTML>