Listing 2741
Submitted by anonymous user, 17 March 2010
$filnavn = "xml/film.xml";
$movie = simplexml_load_file($filnavn);
//$film = new SimpleXMLElement('filmen');
$films = $movie->getName();
$filmen = $movie[0]->addChild('film');
$filmen->addChild('titel', 'PHP2: More Parser Stories');
$filmen->addChild('beskrivelse', 'This is all about the people who make it work.');
echo $movie->asXML($filnavn);


