Login   Register  
PHP Classes
elePHPant
Icontem

File: XSLTTransformExample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2004-01-19 06:07
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>