I'm still not entirely sure of what you mean... If your looking to test to make sure that it's working with your new setup, please try the following block of code:
///////////////////////////////// Begin Code <?php $xml_string = '<?xml version="1.0"?><test><name>Hello World</name><notname>me</notname></test>'; $xsl_string = '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/"><b><xsl:value-of select="/test/name" /></b></xsl:template></xsl:stylesheet>'; $xml = DomDocument::loadXML($xml_string); $xsl = DomDocument::loadXML($xsl_string); //make a new XSLT Processor $proc = new xsltprocessor; // attach the xsl rules $proc->importStyleSheet($xsl); $result_string = $proc->transformToXML($xml); echo $result_string; ?> //////////////////// End Code You should get Hello World back with bold tags. If you get me back or an error, something is wrong. Let us know what happens. My Apologies to the group, this might be a little off topic from Apache. ----------------------------- -- Justin Gehring -- -- PH: 651 - 208 -8797 -- -- EM: [EMAIL PROTECTED] -- ----------------------------- Quoting Billy Duke <[EMAIL PROTECTED]>: > I am seeing the xml and the xsl. the php is working fine as far as i can > see. > ----- Original Message ----- > From: "Justin Gehring" <[EMAIL PROTECTED]> > To: <users@httpd.apache.org> > Sent: Monday, August 08, 2005 12:12 AM > Subject: Re: [EMAIL PROTECTED] xml-xsl > > > > What code are you seeing? The php? The XML? The XSL? > > > > ----------------------------- > > -- Justin Gehring -- > > -- PH: 651 - 208 -8797 -- > > -- EM: [EMAIL PROTECTED] -- > > ----------------------------- > > > > > > Quoting Billy Duke <[EMAIL PROTECTED]>: > > > >> I had allot of problems getting sablotron to work so I decided to install > >> apache2 and php5 instead of the older versions. I am assuming from others > >> posting that I shouldn't need sablotron now. But now I am still having > >> some > >> of the same problems. When I try to view the XML/XSL web pages I only see > >> the code. What can I do? Please help. > >> > >> Billy > >> > >> > >> --------------------------------------------------------------------- > >> The official User-To-User support forum of the Apache HTTP Server > >> Project. > >> See <URL:http://httpd.apache.org/userslist.html> for more info. > >> To unsubscribe, e-mail: [EMAIL PROTECTED] > >> " from the digest: [EMAIL PROTECTED] > >> For additional commands, e-mail: [EMAIL PROTECTED] > >> > >> > > > > > > > > --------------------------------------------------------------------- > > The official User-To-User support forum of the Apache HTTP Server Project. > > See <URL:http://httpd.apache.org/userslist.html> for more info. > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > " from the digest: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server Project. > See <URL:http://httpd.apache.org/userslist.html> for more info. > To unsubscribe, e-mail: [EMAIL PROTECTED] > " from the digest: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]