PHP Code Here is the code that processes the DB Designer xml... of course this could be streamlined if one were using PHP 5. <? function transform() { if ( !isset($_REQUEST["xml"]) ) { echo "<h3>Must enter an XML string!</h3>"; return; } $xmlstr = stripslashes($_REQUEST["xml"]); $xml = new DomDocument; // from /ext/dom $xml->loadXML($xmlstr); $xsl