Documentation
appendChild
usage
$NQL->appendChild( string xml_piece );
paramètres
xml_piece : a XML node as a string
exemples
include_once("../Kernel/common/nql.class.php");
$nql = new NQL(false);
$nql->addCommand('<GET><MEDIA ID="256"/></GET>');
$nql->execute();
$response = $nql->getElement('/RESPONSE/URL');
$response->appendChild('<COUCOU>hello</COUCOU>');
echo $nql->transform("Website.xsl");