<?php
$xmlstr = '<bla><bla1>blabalabalab</bla1></bla>';
if(!$dom = domxml_open_mem($xmlstr)) {
  echo "Error while parsing the document\n";
  exit;
}
// The root domdocument node
$root = $dom->document_element();
///Dump the content back to string
var_dump($dom->dump_mem());
?>

Read the manual in the DOM XML functions section.
Regards,
Lucian COZMA
"Tassos T" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello,
>
> I face a problem. I have a php script and I send a xml request to a
server.
> After I receive xml data but I have this data to an php string variable.
>
> How to create a xml dom with out to write a xml file ?
>
> I want to use a xslt to tranform that xml data.
>
>
> Any idea ?
>
> Thanks
>
> tassos

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to