blob: fdf40f47181ee7c415028878689a60941c1d77f3 [file] [log] [blame]
<?php
ini_set('display_errors','1');
$processor = xslt_create();
$result = xslt_process($processor, 'scalability_testing.xml', 'scalability_testing.xsl');
if(!$result) echo xslt_error($processor);
xslt_free($processor);
echo "$result"
?>