Hey Billy,

I just tested your script and it worked just fine. Maybe you should check
your php setup. I doubt that has got anything to do with Apache (because you
are using the xsl transformer as php extension - not?)
That error message is a php parser message. If you still struggle direct
your question to the php-general list.

Regards,

Thomas

-----Original Message-----
From: Billy Duke [mailto:[EMAIL PROTECTED] 
Sent: 08 August 2005 09:53 AM
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] xml-xsl

This is the erro that i got.

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in 
C:\phpdev5\www\test1.php on line 3

Parse error: parse error, unexpected T_STRING in C:\phpdev5\www\test1.php on

line 3

----- Original Message ----- 
From: "Justin Gehring" <[EMAIL PROTECTED]>
To: <users@httpd.apache.org>
Sent: Monday, August 08, 2005 1:16 AM
Subject: Re: [EMAIL PROTECTED] xml-xsl


> 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]
> 


---------------------------------------------------------------------
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]

Reply via email to