RE: [PHP] XSLT; XML => PHP code

2002-03-28 Thread Darren Gamble
: Re: [PHP] XSLT; XML => PHP code On Thursday, March 28, 2002, at 04:52 PM, Darren Gamble wrote: > Good day, > > To have PHP evaluate string contents as an expression, use eval(). Thanks for the pointer, I have never used this function before. I'm not sure what it means by

Re: [PHP] XSLT; XML => PHP code

2002-03-28 Thread Erik Price
On Thursday, March 28, 2002, at 04:52 PM, Darren Gamble wrote: > Good day, > > To have PHP evaluate string contents as an expression, use eval(). Thanks for the pointer, I have never used this function before. I'm not sure what it means by "as with any function that outputs directly to the

RE: [PHP] XSLT; XML => PHP code

2002-03-28 Thread Darren Gamble
-4948 -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 2:47 PM To: [EMAIL PROTECTED] Subject: [PHP] XSLT; XML => PHP code I am using XSLT functions in PHP to transform a string (whose data is a string of XML) into another string. Ideally,

[PHP] XSLT; XML => PHP code

2002-03-28 Thread Erik Price
I am using XSLT functions in PHP to transform a string (whose data is a string of XML) into another string. Ideally, the second string will consist of PHP code. I would like this outputted PHP code to be executed within the same script as the that which performs this transformation. Here is