XML Elements
An XML element is everything from the element's start tag to the element's
end tag. An element can contain other elements. Elements can also have attributes.
<bookstore>
<book>
<category>PHP Books</category>
<link>http://www.itechcollege.com/books/PHP-n_150.html</link>
</book>
<book>
<category>Javascript Books</category>
<link>http://www.itechcollege.com/books/Javascript-n_146.html</link>
</book>
</bookstore>
In the example above, <bookstore> and <book> have element contents,
because they contain other elements.
|