Search DaTutorials:  
HOME
Php Tutorials
Articles
Basics
Date and Time
File Manipulations
Forms
Functions
General
Interactivity
MySql
Navigation
News,Shoutboxes and Blogs
Language Structure and Data Types
Searching
Security
String Manipulation
User Information and Stats
Search For a Tutorial
Php Reference

DOMNode->appendChild

(no version information, might be only in CVS)

DOMNode->appendChild --  Adds new child at the end of the children

Description

object DOMNode->appendChild ( object newnode)

This functions appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. DOMDocument->createElement(), DOMDocument->createTextNode() etc. or simply by using any other node.

Throws DOMException if node cannot be appended.

The following example will add a new element node to a fresh document.

Example 1. Adding a child

<?php
$doc
= new DOMDocument();
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
print
$doc->saveXML();
?>



Copyright © 2001-2004 The PHP Group
All rights reserved.

     eBay | Credit Cards | Mortgages | Gourmet Chocolate Assortments | Bank Accounts
Home     Link To Us     Ad With Us     Contact Us     Tell A Friend     Affiliates     Blog     MsOfficeHelp