<?php
include_once("QTransform.class.php");
$INXML = "demo_bookshop.xml";
$INXSL = "dbd2propel.xsl";
$xml = simplexml_load_file($INXML);
// Transform
header("content-type:text/xml");
$qt = new QTransform();
echo $qt->toXML($xml, $INXSL);
?>