This is a discussion on Newbie looks for AxKit equivalent written in PHP within the PHP Language forums, part of the PHP Programming Forums category; Hi! I'm looking for an AxKit equivalen written in PHP. For those who don't know Axkit: AxKit is ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi!
I'm looking for an AxKit equivalen written in PHP. For those who don't know Axkit: AxKit is a XML application server. It takes XML documents as input and converts them to a variety of output formats such as HTML or WAP. I'm primarily interested in converting XML to xHTML using XSLT stylesheets. Sorry if the answer is obvious, but I'm a PHP newbie and don't know where to look. With regards, Dennis Benzinger |
|
|||
|
What you seek is a method of performing XSL transformations using an XML
file and an XSL stylesheet. Depending on which version of PHP you are using take a look in the PHP online manual at http://www.php.net/manual/en/ref.xsl.php http://www.php.net/manual/en/ref.xslt.php I use XSL transformations for all my HTML output, so take a look at http://www.tonymarston.co.uk/php-mysql/sablotron.html http://www.tonymarston.co.uk/php-mysql/xsl.html There is a sample application described at http://www.tonymarston.co.uk/php-mys...plication.html -- Tony Marston http://www.tonymarston.net "Dennis Benzinger" <Dennis.Benzinger@gmx.net> wrote in message news:41762402$1@news.uni-ulm.de... > Hi! > > I'm looking for an AxKit equivalen written in PHP. > > For those who don't know Axkit: > AxKit is a XML application server. It takes XML > documents as input and converts them to a variety > of output formats such as HTML or WAP. > > I'm primarily interested in converting XML to xHTML > using XSLT stylesheets. > > > Sorry if the answer is obvious, but I'm a PHP newbie > and don't know where to look. > > > With regards, > Dennis Benzinger |