|
Posted by Pivo Pijem on 07/07/05 12:29
Hey!
I have a problem loading (transforming) XML file using DOM XML extension
on OpenVMS (alpha).
I have installed libxml2, mysql, apache,... following steps described
here (http://www.pi-net.dyndns.org/anonymous/kits/)
All I want to do is:
1. build an XML from MySQL DB (functions like load, saveXML,
appendChild, createElement are used)
2. Load an XSL file
3. transform XML with loaded XSL and show (echo) the result of the
transformation
My problem is that none of xmldom functions (which work on PHP 5) are
supported.
Why is that? Do I need some extension for domxml for OpenVMS?
Where can I find it?
In php.ini file I have already uncomment extension for XML & XSL -> but
not for domxml (there is no such extension).
I would appreciate any help and suggestions.
Thanks, Damjan
--------------------------------------------------------------
I have tried samples listed below:
/*
// Test 3
$dom = DOMDocument::loadXML("<test />");
*/
/*
// Test 2
$xmlparser = xml_parser_create();
*/
/*
// Test 1
$xmlstr = "<root />";
$dom = domxml_open_mem($xmlstr);
*/
--------------------------------------------------------------
[Back to original message]
|