Iemand een idee hoe je dit kan doen?
$doc = new DOMDocument();
$rowset = $doc->createElement( "ROWSET" );
$doc->formatOutput = true;
$Vak = $doc->createElement( "VAK" );
$num = $doc->createAttribute("NUM");
$Vak->appendChild($num);
$numValue = $doc->createTextNode(1);
$num->appendChild($numValue);
$Titel = $doc->createElement( "test" );
$Titel->appendChild(
$doc->createTextNode( 'test' )
);
$Vak->appendChild( $Titel);
$doc->appendChild($rowset);
$_SESSION['xmlbestand'] = drupal_get_path('module', 'xmlgenerator') ."/xml/data/test.xml";
"/" ;
echo $doc->save($_SESSION['xmlbestand']);