<? include( "Document.php" ); 
 
 
# Document object declaration
 
 
$oDocument = new Document( "test.xml" ); 
 
 
# Adds button caption
 
 
$oResult = $oDocument->getElementsByTagName( "input" );
 
$oResult[ 0 ]->setAttribute( "value", "button" );
 
 
# Removes a combobox item
 
 
$oComboBox = $oDocument->getElementById( "combo" );
 
$oComboBox->firstChild->unlink();
 
 
# Adds a new item and clones the combobox
 
 
$oComboBox->appendChild( $oDocument->createElement( "option", 3, array( "value" => 3 ) ) );
 
$oComboBox->appendSibling( $oComboBox->copy() );
 
 
echo $oDocument->toString( true );
 
 
?>
 
 
 
 
 |