load('db/links.xml'); $xpath = new DOMXpath($doc); // Creating new node $newNode = $doc->createElement('link'); $newURL = $doc->createElement('url', $url); if($popup == '1') $newClick = $doc->createElement('onclick', 'popup'); else $newClick = $doc->createElement('onclick', ''); $newImg = $doc->createElement('img', $name_file); $newTitle = $doc->createElement('title', $title); $newNode->appendChild($newURL); $newNode->appendChild($newClick); $newNode->appendChild($newImg); $newNode->appendChild($newTitle); $searchLabel = $xpath->query('reserve'); $searchLabel->item(0)->appendChild($newNode); $doc->save('db/links.xml');