Showing posts with label XSL. Show all posts
Showing posts with label XSL. Show all posts

Friday, March 2, 2012

Create Dynamic Links With XSL

This would go inside a process loop such as:

where param1 and param2 are children inside your XML document.


http://example.com/?param1=
&param2=


Link Text

How To Add An XSL Stylesheet To PHP DOMDocument

<?php
$xslAttributes = 'href="sample.xsl" type="text/xsl"';
$xmlStylesheet = new DOMProcessingInstruction('xml-stylesheet',$xslAttributes);

$doc = new DOMDocument('1.0','UTF-8');
$doc->appendChild($xmlStylesheet);
?>